chia-blockchain/tests
Arvid Norberg 912dc84663
don't increment counters for outgoing messages blocked by the rate limit. (#3518)
This was causing a problem where outbound messages, blocked by the rate limiter,
would still increment the counters as-if they had been sent. This, in turn,
could cause other message types to get blocked becuase the rate limiter thought
we had sent a lot of the other (blocked) message type.
2021-05-03 11:18:29 -07:00
..
blockchain Add announcements for standard tx (#3023) 2021-04-30 03:13:00 +09:00
clvm Improve streamable (#3031) 2021-04-30 10:22:11 -07:00
core don't increment counters for outgoing messages blocked by the rate limit. (#3518) 2021-05-03 11:18:29 -07:00
generator Improve streamable (#3031) 2021-04-30 10:22:11 -07:00
runner-templates Keep up with dependabot modifying our workflow files and Canonicalize order of tests 2021-04-14 11:07:56 -07:00
simulation Use `sed` to change imports from `src` to `chia`. 2021-04-04 21:41:39 -07:00
util Improve safety of coin store (#2984) 2021-04-28 15:27:56 -04:00
wallet Add announcements for standard tx (#3023) 2021-04-30 03:13:00 +09:00
weight_proof Improve safety of coin store (#2984) 2021-04-28 15:27:56 -04:00
README.md Update README for testconfig.py change 2021-03-25 12:05:54 -07:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
build-workflows.py Keep up with dependabot modifying our workflow files and Canonicalize order of tests 2021-04-14 11:07:56 -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
setup_nodes.py daemon test 2021-04-08 13:22:48 -07:00
testconfig.py Add types to support Generator Back References (#1901) 2021-04-14 13:49:36 -07:00
time_out_assert.py Use `sed` to change imports from `src` to `chia`. 2021-04-04 21:41:39 -07:00

README.md

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 in 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.