https://github.com/softwareTestingResearch/pytest-ranking
A Pytest plugin for faster test failure detection
https://github.com/softwareTestingResearch/pytest-ranking
pytest pytest-plugin python regression-testing test-prioritization
Last synced: 10 days ago
JSON representation
A Pytest plugin for faster test failure detection
- Host: GitHub
- URL: https://github.com/softwareTestingResearch/pytest-ranking
- Owner: softwareTestingResearch
- License: mit
- Created: 2023-11-26T20:57:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-23T19:52:58.000Z (4 months ago)
- Last Synced: 2026-02-24T02:12:22.105Z (4 months ago)
- Topics: pytest, pytest-plugin, python, regression-testing, test-prioritization
- Language: Python
- Homepage: https://pypi.org/project/pytest-ranking
- Size: 109 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pytest - pytest-ranking - 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. (Plugins)
README
# pytest-ranking
[](https://github.com/softwareTestingResearch/pytest-ranking/actions?workflow=CI)
[](https://pypi.org/project/pytest-ranking)
[](https://results.pre-commit.ci/latest/github/softwareTestingResearch/pytest-ranking/main)
A Pytest plugin that implements Regression Test Prioritization (RTP) for faster regression fault detection.
This [pytest](https://github.com/pytest-dev/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.
## Installation
To install `pytest-ranking` via [pip](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/project):
```bash
pip install pytest-ranking
```
## Usage
Pytest 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:
```bash
pytest --rank
```
Before the test run starts, if `--rank` is passed, the terminal header will report `pytest-ranking`'s configuration of this run, for example:
```text
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:
```text
============================================= 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
```
### Optimizing test prioritization heuristics
You can set the weights of different test prioritization heuristics by passing the optional `--rank-weight` flag with formatted values:
```bash
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 `*.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.
### Optimizing test prioritization levels
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:
```bash
pytest --rank --rank-level=function
```
- The smallest test item that can be reordered in pytest test suite is [parametrized unit test](https://docs.pytest.org/en/7.1.x/example/parametrize.html) (PUT)
- This option allows you to set at which level the reordering takes place:
- `put` reorders the each PUT and re-arranges their order based on their assigned priority scores
- `function` reorders each test function, parametrized values of a test function follow their default order
- `module` reorders each test file, all tests in the test file follow their default order
- `dir` reorders each test directory, all tests within each directory follow their default order
The default value is `put`.
### Replaying specified test order
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:
```bash
pytest --rank --rank-replay=replay_order.txt
```
### Tracking data from historical runs
You 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:
```bash
pytest --rank --rank-hist-len=30
```
The 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.
### 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 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`:
```bash
pytest --rank --rank-weight=0-0-0 --rank-seed=1234
```
By default, `pytest-ranking` uses `0` as the seed.
### Setting configurable options via config file
You can always apply available options by adding them to the ``addopts`` setting in your [pytest.ini](https://docs.pytest.org/en/latest/reference/customize.html#configuration).
For example, create `pytest.ini` in your codebase root folder as such:
```ini
[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:
```ini
[pytest]
rank_weight=0-1-0
rank_hist_len=30
```
and run `pytest --rank` on the command line.
## Deployment
`pytest-ranking` is easy to deploy into CI workflow, please see [deployment](./docs/DEPLOYMENT.md).
## Compatibility
`pytest-ranking` works with [test selection](https://docs.pytest.org/en/6.2.x/usage.html#specifying-tests-selecting-tests) and [parallelization](https://pypi.org/project/pytest-xdist).
It also works with plugins for ordering tests, e.g., [pytest-order](https://pypi.org/project/pytest-order), [pytest-dependency](https://pypi.org/project/pytest-dependency) by
running ordered tests first in their declared order.
Pytest options that order tests generally (e.g., [`--ff`](https://docs.pytest.org/en/stable/how-to/cache.html#usage)), or plugins that randomly order tests (e.g., [pytest-randomly](https://github.com/pytest-dev/pytest-randomly), [pytest-random-order](https://github.com/pytest-dev/pytest-random-order), [pytest-reverse](https://github.com/adamchainz/pytest-reverse)), can interfere with `pytest-ranking` as they use the same reordering hook.
## Reference
#### Demo video
A 5-minute demo video with walkthrough of `pytest-ranking`: [YouTube link](https://youtu.be/SrnkgTs3uok?feature=shared)
#### Bibtex citation
```
@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},
}
```
## Contributing
Contributions are very welcome. Tests can be run with [tox](https://tox.readthedocs.io/en/latest/).
## License
Distributed under the terms of the [MIT](http://opensource.org/licenses/MIT) license, `pytest-ranking` is free and open-source software.
## Issues
If you encounter any problems, please [file an issue](https://github.com/softwareTestingResearch/pytest-ranking/issues) or [pull request](https://github.com/softwareTestingResearch/pytest-ranking/pulls) along with a detailed description.