chia-blockchain/tests
Matt Hauff f5ade1564c
Announcement hash should never be None (#8965)
* Announcement hash should never be None

* Allow origin ID to be anywhere in the coin set

* mypy

* Change to for/else format

* Fix comment

Co-authored-by: Kyle Altendorf <sda@fstab.net>

* Style change to loop

* tiny bad merge

* Add test

* Lint

Co-authored-by: Kyle Altendorf <sda@fstab.net>
2022-02-15 14:42:07 -08:00
..
blockchain remove the GeneratorArgs type, and instead include the heights and generator programs as separate lists in BlockGenerator. The heights are not necessary when validating blocks, so this makes it easier to omit them in that case. The heights are only used when generating/farming a block. (#10006) 2022-01-31 18:49:39 -08:00
clvm remove redundant function, calculate_cost_of_program(). The cost is now part of the NPCResult object (#9964) 2022-01-31 18:49:12 -08:00
core remove chia.util.clvm pass-through file (#10130) 2022-02-14 12:52:14 -08:00
farmer_harvester farmer|server|tests: Fix for farmer service crash if the keychain is empty (#9515) 2021-12-14 18:03:59 -08:00
generator remove chia.util.clvm pass-through file (#10130) 2022-02-14 12:52:14 -08:00
plotting tests: Fix and improve plot manager caching tests (#9785) 2022-01-13 17:41:15 -08:00
pools This patch enables fees for the plotnft commands - create, claim, joi… (#9968) 2022-02-14 20:07:06 -08:00
runner_templates Allow older jobs to run to completion when on main (#10067) 2022-02-01 19:24:46 -06:00
simulation Ms.main tests (#10026) 2022-01-29 21:37:11 -05:00
tools pre-commit: Add a new hook to run isort (#8827) 2022-02-15 07:28:53 -08:00
util remove the GeneratorArgs type, and instead include the heights and generator programs as separate lists in BlockGenerator. The heights are not necessary when validating blocks, so this makes it easier to omit them in that case. The heights are only used when generating/farming a block. (#10006) 2022-01-31 18:49:39 -08:00
wallet Announcement hash should never be None (#8965) 2022-02-15 14:42:07 -08:00
weight_proof chia|tests|pre-commit: Add missing __init__.py files (#8758) 2021-12-16 18:52:46 -08:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
block_tools.py remove the GeneratorArgs type, and instead include the heights and generator programs as separate lists in BlockGenerator. The heights are not necessary when validating blocks, so this makes it easier to omit them in that case. The heights are only used when generating/farming a block. (#10006) 2022-01-31 18:49:39 -08:00
build-init-files.py just put __init__.py files where we have .py files (plus subdirectories) (#10129) 2022-02-07 13:16:13 -08:00
build-workflows.py chia|tests|pre-commit: Add missing __init__.py files (#8758) 2021-12-16 18:52:46 -08:00
check_pytest_monitor_output.py add stress tests with malicious generators (#8570) 2021-09-29 11:41:49 -07:00
chia-start-sim Rename src to chia. 2021-04-04 21:41:39 -07:00
conftest.py updated soft fork to 2300000 (#10170) 2022-02-09 18:02:06 -08:00
connection_utils.py Fullnode related changes from wallet protocol and unharded derivation (#8522) 2021-09-18 10:27:34 -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 Ms.main tests (#10026) 2022-01-29 21:37:11 -05:00
testconfig.py tests|github|pre-commit: Improve build-workflows.py and make it a pre-commit hook (#8728) 2021-11-09 10:57:40 -08:00
time_out_assert.py Timed assertion output simplification (#9290) 2021-11-19 11:14:18 -08:00
wallet_tools.py remove chia.util.clvm pass-through file (#10130) 2022-02-14 12:52:14 -08: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.