Files
tempest/tempest/tests
Martin Kopec ea3e38c2af Fix test_fix_argument_yes
The test was randomly failing which was most likely caused by
a race condition - the temporary module is not created at the
moment when the test tries to load it.
This commit moves the temp module creation into a setUp method.

Closes-Bug: #1918316
Change-Id: I5d5356200f531a06b2814205d65f20dc528cf046
2021-09-14 05:13:02 +00:00
..
2021-02-24 12:45:22 +00:00
2021-04-02 08:49:22 +00:00
2021-09-14 05:13:02 +00:00
2020-04-04 10:33:23 +02:00
2021-02-24 12:45:22 +00:00
2021-02-24 12:45:22 +00:00

Tempest Field Guide to Unit tests

What are these tests?

Unit tests are the self checks for Tempest. They provide functional verification and regression checking for the internal components of Tempest. They should be used to just verify that the individual pieces of Tempest are working as expected. They should not require an external service to be running and should be able to run solely from the Tempest tree.

Why are these tests in Tempest?

These tests exist to make sure that the mechanisms that we use inside of Tempest are valid and remain functional. They are only here for self validation of Tempest.

Scope of these tests

Unit tests should not require an external service to be running or any extra configuration to run. Any state that is required for a test should either be mocked out or created in a temporary test directory. (see test_wrappers.py for an example of using a temporary test directory)