February 2022
Intermediate to advanced
274 pages
6h 28m
English
The Plugin List from the main pytest documentation site[54] lists almost 1000 plugins last time I checked. That’s a lot of plugins. Let’s take a look at a small subset of plugins that are both useful to lots of people and show the diversity of what we can do with plugins.
All of the following plugins are available via PyPI.
pytest, by default, runs our tests in a predictable flow. Given a single directory of test files, pytest will run each file in alphabetical order. Within each file, each test is run in the order it appears in the file.
Sometimes it’s nice to change that order. The following plugins in some way change the normal test run flow:
pytest-order ...
Read now
Unlock full access