Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PyTest: Randomize Order of tests

Install pytest-random-order

pip install pytest-random-order

And from now we can use the --random-order flag to run the tests in a random order.

pytest -v --random-order

test_order.py::test_two PASSED
test_order.py::test_three PASSED
test_order.py::test_one PASSED