A Pytest plugin that implements Regression Test Prioritization (RTP) for faster regression fault detection.
This pytest plugin allows you to find regression test failures faster and receive testing feedback sooner from CI build. It speeds up the failure detection of your test suite by executing earlier the tests that are faster, recently failed, and more code-change-related.
To install pytest-ranking via pip from PyPI:
pip install pytest-rankingPytest will automatically find the plugin and use it when you run pytest.
You can run pytest-ranking with its default configuration, which runs faster tests first by passing the --rank option:
pytest --rankBefore the test run starts, if --rank is passed, the terminal header will report pytest-ranking's configuration of this run, for example:
Using --rank-weight=0-0-0
Using --rank-level=put
Using --rank-hist-len=50
Using --rank-seed=1744140050
Using --rank-replay=None
After the test run finishes, the terminal summary will show the overhead of pytest-ranking in this run, for example:
============================================= pytest-ranking summary info =============================================
Number of changed Python files: 0
Time to compute test-change similarity (s): 0.000865936279296875
Time to reorder tests (s): 0.0003600120544433594
Time to collect test features (s): 0.0004608631134033203
You can set the weights of different test prioritization heuristics by passing the optional --rank-weight flag with formatted values:
pytest --rank --rank-weight=0-1-0- Weights are separated by
-- The first weight is for running faster tests
- The second weight is for running recently failed tests
- The third weight is for running tests more similar to the changed
*.pyfiles 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.
You can set at which level of your test suite will be reordered, by passing the optional --rank-level flag in one of these values: put, function, module, dir. For example:
pytest --rank --rank-level=function- The smallest test item that can be reordered in pytest test suite is parametrized unit test (PUT)
- This option allows you to set at which level the reordering takes place:
putreorders the each PUT and re-arranges their order based on their assigned priority scoresfunctionreorders each test function, parametrized values of a test function follow their default ordermodulereorders each test file, all tests in the test file follow their default orderdirreorders each test directory, all tests within each directory follow their default order
The default value is put.
You can run/replay tests in a specific order by listing the to-be-run test IDs in a text file, where each line is a test ID, and pass the file path to the optional --rank-replay flag:
pytest --rank --rank-replay=replay_order.txtYou can also set the maximum value of the number test runs since a test's last failure that could be recorded for each test, by passing the optional --rank-hist-len flag:
pytest --rank --rank-hist-len=30The default value is 50.
Note that pytest-ranking does not store any historical test run logs, it merely updated its cached data from the previous run with data from the latest run.
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 set 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=1234By default, pytest-ranking uses 0 as the seed.
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=30and 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=30and run pytest --rank on the command line.
pytest-ranking is easy to deploy into CI workflow, please see deployment.
pytest-ranking works with test selection and parallelization.
It also works with plugins for ordering tests, e.g., pytest-order, pytest-dependency by
running ordered tests first in their declared order.
Pytest options that order tests generally (e.g., --ff), or plugins that randomly order tests (e.g., pytest-randomly, pytest-random-order, pytest-reverse), can interfere with pytest-ranking as they use the same reordering hook.
A 5-minute demo video with walkthrough of pytest-ranking: YouTube link
@inproceedings{cheng2025pytest,
title={{pytest-ranking: A Regression Test Prioritization Tool for Python}},
author={Cheng, Runxiang and Ke, Kaiyao and Marinov, Darko},
booktitle={Companion Proceedings of the 33rd ACM International Conference on the Foundations of Software Engineering},
year={2025},
}
Contributions are very welcome. Tests can be run with tox.
Distributed under the terms of the MIT license, pytest-ranking is free and open-source software.
If you encounter any problems, please file an issue or pull request along with a detailed description.