A Pytest plugin for automatically prioritizing/ranking tests to speed up failure detection
Project description
pytest-ranking
A Pytest plugin for reducing the failure detection time with automated test prioritization/ranking.
This pytest plugin allows you to find failures faster and receive sooner debugging feedback from CI. It speeds up the failure detection of your test suite by prioritizing the execution of tests that are faster, recently failed, and/or related to code change.
Installation
To install pytest-ranking
via pip from PyPI:
pip install pytest-ranking
Usage
Pytest will automatically find the plugin and use it when you run pytest
. You can use the default prioritization heuristic, which runs tests that have shorter execution times first by passing the --rank
option:
pytest --rank
After the test run finishes, the terminal summary will show the config and overhead of running the plugin of the finished run, for example:
============================================= pytest-ranking summary info =============================================
weights: 1-0-0
level: param
look-back history length: 50
number of *.py src files with new hashes: 0
test-change similarity compute time (s): 0.00225
test order compute time (s): 0.00033
feature collection time (s): 0.00246
Weighting ranking heuristics
You can configure the weights of different prioritization heuristics by passing the optional --rank-weight
flag with formatted values:
pytest --rank --rank-weight=0-1-0
Weights are separated by -
. The 1st weight is for running faster tests, the 2nd weight is for running recently failed tests, and the 3rd weight is for running tests more similar to the changed *.py
files since the last run.
All weights must be integers or floats, and their sum will be normalized to 1.
A higher weight means that a corresponding heuristic is favored. The default value is 1-0-0
, which only prioritizes faster tests.
Running in different granularities
You can configure at which granularity your test suite will be re-ordered by passing the optional --rank-level
flag in one of these values: param
, method
, file
, folder
. For example:
pytest --rank --rank-level=method
The smallest test item that can be re-ordered in the test suite in pytest is parametrized unit test (PUT). param
ranks each PUT and re-arranges their execution order based on their assigned ranks; method
ranks each test method, parametrized values of that test method will follow pytest's default execution order (alphabetical); file
ranks each test file, all tests in the test file will follow pytest's default execution order; folder
ranks each test directory that hosts the test files, all tests hosted in the folder will follow the default order.
Tracking heuristics from historical runs
You can also configure the maximum window size for looking into previous test runs, which is used to compute the number of runs since a test had failed, by passing the optional --rank-hist-len
flag (the default value is 50):
pytest --rank --rank-hist-len=30
Note that the plugin does not store any historical run logs, it merely resets cached ranking heuristics after every rank-hist-len
number of runs.
Running tests in random order
You can prompt pytest-ranking
to run tests in random order, by setting the sum of --rank-weight
option to 0, e.g., --rank-weight=0-0-0
.
You can also configure the seed used when running tests in random order, via setting an integer to the option --rank-seed
.
For example, the command below runs tests randomly with seed 1234
:
pytest --rank --rank-weight=0-0-0 --rank-seed=1234
Passing plugin options via config file
You can always apply available options by adding them to the addopts
setting in your pytest.ini.
For example, create pytest.ini
in your codebase root folder as such:
[pytest]
addopts = --rank --rank-weight=0-1-0 --rank-hist-len=30
and run pytest
on the command line.
Alternatively, you can also create pytest.ini
in your codebase root folder as such:
[pytest]
rank_weight=0-1-0
rank_hist_len=30
and run pytest --rank
on the command line.
Compatibility
Because pytest-ranking
re-orders tests, it is not compatible with other pytest plugins that enforce other test orders, e.g., pytest-randomly, pytest-random-order, pytest-reverse.
Contributing
Contributions are very welcome. Tests can be run with tox.
License
Distributed under the terms of the MIT license, pytest-ranking
is free and open-source software.
Issues
If you encounter any problems, please file an issue or pull request along with a detailed description.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_ranking-0.3.1.tar.gz
.
File metadata
- Download URL: pytest_ranking-0.3.1.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1d8d5942f34f7ac5e6af411a7dd217e277e9606d609f38b27ce540be1bde0a0 |
|
MD5 | 2f9f62a0cd24f204ce64361262991261 |
|
BLAKE2b-256 | 475058f0db49b9bfcfa452b95c7744c83796ffbbd445481a27826382f74957db |
File details
Details for the file pytest_ranking-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_ranking-0.3.1-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 563babe1feda395953025fe5a767d4c2617e787b7352ab706c9106f732a26371 |
|
MD5 | 0c5bccb68bb52bae516138e1fec1ce2d |
|
BLAKE2b-256 | 8901fd7a465d1402b54a8af35965e0c97b76ab3143fd8d6d50f723d0936c0d6f |