Skip to main content

Prioritize running the slowest tests first.

Project description

pytest-slow-first

PyPI Version Python Versions

Overview

pytest-slow-first is a pytest plugin that optimizes test suite execution by sorting tests based on their duration from the last run. This ensures that slower tests run first, leading to more efficient utilization of resources when used in conjunction with pytest-xdist.

How It Works

When running your test suite with this plugin, it saves the duration of each test in a file. On subsequent runs, tests are sorted based on the time they took to execute in the last run. This sorting minimizes the overall test suite execution time.

Running tests with pytest-xdist with multiple workers, evenly distributing slower tests among workers becomes crucial. Without this plugin, the default order may lead to inefficient resource utilization. pytest-slow-first addresses this issue by ensuring that slower tests are evenly distributed, reducing the total execution time.

Example

Consider a test suite with six tests, each taking varying amounts of time to run: Suite with 6 tests and their times

Running this suite with two workers using only pytest-xdist might result in uneven distribution:

Suite running with xdist

However, with pytest-slow-first, the same suite will be executed more efficiently and takes less time to finish, as shown below:

Suite with 6 tests running with xdist + slow-first

Usage

To use pytest-slow-first alongside pytest-xdist, simply add the --slow-first option:

pytest tests --slow-first -n3  # using along side xdist

The plugin initializes by running your suite as usual the first time. On subsequent runs, it sorts tests based on the time taken in the previous run.

Multiple runs

The plugin's results file is cumulative. If a test run already exists in the file, its duration will be updated.

Custom File Location

By default, the plugin saves test durations in a file named pytest-slow-first.json in the current directory. You can change the location by setting the SLOW_FIRST_PATH environment variable:

export SLOW_FIRST_PATH=/tmp/pytest-slow-first.json pytest --slow-first

Installation

You can install "pytest-slow-first" via pip:

$ pip install pytest-slow-first

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the MIT license, "pytest-slow-first" is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-slow-first-1.0.3.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

pytest_slow_first-1.0.3-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file pytest-slow-first-1.0.3.tar.gz.

File metadata

  • Download URL: pytest-slow-first-1.0.3.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pytest-slow-first-1.0.3.tar.gz
Algorithm Hash digest
SHA256 49376a7fe8075f969faada421d25dfffea8e28695640102be160788ac4762899
MD5 191b140091983639ba6ad03f8b9843f8
BLAKE2b-256 70f69d5ceb822f214231f85478d6d17b20db7b0f7cba0f229ff383ca1801487e

See more details on using hashes here.

File details

Details for the file pytest_slow_first-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_slow_first-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6ccbf25fae8db7378771f22454f9a54af26e69cbd77e91a800fb1664f7133126
MD5 1fdd180d3655bd25448bbda024847910
BLAKE2b-256 774a07ec59756e97b3bbfa1aebc5793d3a2de930204c986d72ae336658c4c25f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page