chia-blockchain/tests
2023-06-14 16:09:13 -05:00
..
blockchain fix flaky MAX_FUTURE_TIME test (#15499) 2023-06-13 09:56:25 -05:00
clvm Move CAT_MOD from cat_loader -> cat_utils (#15459) 2023-06-06 19:13:11 -05:00
cmds Have simulator not rely on chia_root as originally implemented. & fix simulator tests (#15157) 2023-05-17 12:55:12 -05:00
core server: Introduce ApiProtocol (#15466) 2023-06-13 20:12:25 -05:00
db remove leading newlines from indented code blocks (#14653) 2023-02-23 21:53:48 -06:00
farmer_harvester server: Introduce ApiProtocol (#15466) 2023-06-13 20:12:25 -05:00
fee_estimation server: Introduce ApiProtocol (#15466) 2023-06-13 20:12:25 -05:00
generator util: Improve list_to_batches (#15415) 2023-06-06 12:00:07 -05:00
plot_sync server: Introduce ApiProtocol (#15466) 2023-06-13 20:12:25 -05:00
plotting configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
pools server: Introduce ApiProtocol (#15466) 2023-06-13 20:12:25 -05:00
simulation Convert blockchain_constants's consensus_mode param into a fixture and use it to skip some simulation related tests in HARD_FORK_2_0 mode (#15384) 2023-05-26 11:31:14 -05:00
tools Typecheck tests/tools/test_full_sync.py (#14947) 2023-05-23 19:53:20 -05:00
util util: Drop chia.util.chunks and use chia.util.to_batches instead (#15418) 2023-06-09 16:35:31 -05:00
wallet Only subscribe to inner wallet puzzle hashes (#14356) 2023-06-13 12:51:16 -05:00
weight_proof remove unused test functions (#15375) 2023-05-25 14:05:08 -05:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
build-init-files.py improve ignore handling in __init__.py creation script (#15093) 2023-04-24 12:52:51 -06:00
build-job-matrix.py tools: Implement and test tools/legacy_keyring.py (#13947) 2022-12-03 23:31:51 -06:00
check_pytest_monitor_output.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
check_sql_statements.py Make sql pre-commit check work when pre-commit hooks are in non-standard locations (#14955) 2023-03-31 15:42:17 -05:00
chia-start-sim Rename src to chia. 2021-04-04 21:41:39 -07:00
conftest.py tests: Use separate BlockTools in farmer/harvester fixtures (#15510) 2023-06-14 16:09:13 -05:00
connection_utils.py server: Don't pass the host to WSChiaConnection (#14152) 2023-05-09 15:58:20 -05:00
README.md Improve style consistency in root directory docs files (#4493) 2021-05-12 13:12:30 -07:00
testconfig.py reusable workflow for a single test workflow (#11722) 2022-06-03 16:56:52 -05: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.