chia-blockchain/tests
Arvid Norberg 0b92c89e7d
Conditions parser (#8393)
* tests for invalid list terminators in conditions

* bump clvm_rs version
2021-09-08 14:46:25 -07:00
..
blockchain Rust conditions (#7167) 2021-08-17 14:57:41 -07:00
clvm fix test_singleton (#7559) 2021-07-16 09:05:57 -07:00
core Conditions parser (#8393) 2021-09-08 14:46:25 -07:00
generator Fix single coin generator (#8185) 2021-08-24 10:50:40 -07:00
pools DID Update Merge (#8129) 2021-09-07 12:48:41 -07:00
runner-templates Swap password to just be "foo" (#7946) 2021-08-04 09:58:53 -07:00
simulation Keyring passphrase protection (#7249) 2021-08-04 12:46:55 -07:00
util Rust conditions (#7167) 2021-08-17 14:57:41 -07:00
wallet DID Update Merge (#8129) 2021-09-07 12:48:41 -07:00
weight_proof move chia.util.block_tools and chia.util.wallet_tools into tests (#6799) 2021-06-16 11:12:26 -07:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
block_tools.py plotting|tests: Fix two PlotsRefreshParameter instantiations (#8367) 2021-09-07 14:02:19 -07:00
build-workflows.py remove trailing whitespace in generated workflow files (#7921) 2021-08-02 17:14:25 -07:00
check_pytest_monitor_output.py lower the RAM threshold to 800 MB (the largest test use 144 MB right now). Also improve printing of results (#6972) 2021-07-01 09:48:28 -07:00
chia-start-sim Rename src to chia. 2021-04-04 21:41:39 -07:00
connection_utils.py Use sed to change imports from src to chia. 2021-04-04 21:41:39 -07:00
pytest.ini WARNING py.test 2021-02-07 20:13:01 +09:00
README.md Improve style consistency in root directory docs files (#4493) 2021-05-12 13:12:30 -07:00
setup_nodes.py Keyring passphrase protection (#7249) 2021-08-04 12:46:55 -07:00
testconfig.py Add resource usage check to generated template. Add warning to generated workflows. (#7181) 2021-07-13 10:45:35 -07:00
time_out_assert.py Correct * to ** kwargs unpacking in time_out_assert() (#8160) 2021-08-24 10:56:42 -07:00
wallet_tools.py test agg sig conditions (#7962) 2021-08-10 15:26:29 -07:00

Test CI Job generation

The CI jobs for these tests are managed by build-workflows.py.

If you add a test file, or move one to another directory, please run build-workflows.py. Tests are recognized by the file glob test_*.py. Changing the contents of a file does not require running build-workflows.py.

We currently use github actions. Default runners have two vcpus. The workflows are located in ../.github/workflows/.

The inputs to build-workflows.py are the templates in runner-templates, the file testconfig.py in this directory, and the optional config.py files in some test subdirectories. Files in the template directory ending in include.yml are included in jobs based on the per-directory settings.

The generated workflows are output to ../.github/workflows/.

Each subdirectory below the directories root_test_dirs in testconfig.py becomes a job in the github workflow matrix. If your jobs run too long, simply move some tests into new subdirectories and run build-workflows.py. A workflow built from a parent directory does not include the tests in its subdirectories. The subdirectory jobs do not include the tests from their parents.

testconfig.py

In the top tests directory, testconfig.py contains the application settings and the per-directory default settings.

config.py

Each directory has an optional config.py file, which can override the per-directory default settings.

Per directory settings defaults:

parallel = False
checkout_blocks_and_plots = True
install_timelord = True
job_timeout = 30

Parallel test execution

If you are certain that all the tests in a directory can run in parallel, set parallel = True in config.py inside that directory.

Optional job stages

Set checkout_blocks_and_plots to False to omit checking out the test-cache repo.

Set install_timelord to False to omit the step of installing a Time Lord for your directory's job.

Job Timeout

Set job_timeout to the number of minutes you want the CI system to wait before it kills your job. Add two or three minutes to allow for job setup.