-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit testing: randomize test execution order
A recent commit 5b3f385 fixed an issue that was found in existing tests as a result of adding a new test. This issue could have been caught earlier by randomizing the execution order of the unit tests. This commit adds pytest-randomly to the test requirements so that test execution will be randomized.
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
pytest | ||
pytest-helpers-namespace | ||
pytest-randomly==3.12 # TODO: unfreeze when Python 3.7 support is dropped. | ||
pytest-timeout | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters