Skip to main content

pytest plugin to run your tests in a specific order

Project description

pytest-order PyPI version

This is a fork of pytest-ordering. That project is not maintained anymore, and there are several helpful PRs waiting for merge. Therefore I decided to create this fork that tries to combine the original code with most of the provided PRs.
My hope is that the original project will be moved to the pytest organization as outlined in this issue. When this happens, this fork will be obsolete.

pytest-order is a pytest plugin to run your tests in a specific order.

Build Status

Have you ever wanted to easily run one of your tests before any others run? Or run some tests last? Or run this one test before that other test? Or make sure that this group of tests runs after this other group of tests?

Now you can.

Install with:

pip install pytest-order

This defines some pytest markers that you can use in your code.

For example, this:

import pytest

@pytest.mark.run(order=2)
def test_foo():
    assert True

@pytest.mark.run(order=1)
def test_bar():
    assert True

Yields this output:

$ py.test test_foo.py -vv
============================= test session starts ==============================
platform darwin -- Python 2.7.5 -- py-1.4.20 -- pytest-2.5.2 -- env/bin/python
plugins: order
collected 2 items

test_foo.py:7: test_bar PASSED
test_foo.py:3: test_foo PASSED

=========================== 2 passed in 0.01 seconds ===========================

More information can be found in the documentation:

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-order-0.7.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

pytest_order-0.7.1-py2.py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 2 Python 3

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