Skip to main content

pytest plugin for controlling execution flow

Project description


License PyPI PyPI - Downloads

What?

pytest-node-dependency is a pytest plugin that allows you to define dependencies between tests and reorder their execution based on those dependencies. This plugin ensures that tests with dependencies run after their required prerequisites have completed successfully.

A unique feature of the plugin is that if you set a test to depend on another one, the plugin will check if the test being depended upon failed. If that's the case, it will mark the current test as 'expected to fail' (xfail).

How to install?

pip install pytest-node-dependency

How to use?

To set up a test dependency, decorate the test function with the depends mark and provide a list of dependencies via the on keyword argument to the decorator. Dependencies can be specified by name only when in the same file as the test being decorated or by the pytest node path for tests in other files/classes.

import pytest


def test_second(request):
    print("second")
    assert request.session.items[1].name == 'test_second'


@pytest.mark.depends(on=["test_plugin.py::test_second"])
def test_last(request):
    print("last")
    assert request.session.items[2].name == 'test_last'


def test_first(request):
    print("first")
    assert request.session.items[0].name == 'test_first'

Xdist adoption:

The way xdist plugin works is by utilizing multiple cores and spreads the tests among them. The problem with the plugin is that if you wish to use reordering, you probably want to set some dependency among the tests, However, the xdist plugin will break it.

For that, you should set the group for the tests. The group means that a gateway worker will collect the tests, and will place all the grouped tests in a single gateway worker. This will lead creation of serial testing among parallel exectuion.

import pytest

@pytest.mark.depends(xdist_group='a')
def test_second(request):
    print("second")
    assert request.session.items[1].name == 'test_second'


@pytest.mark.depends(on=["test_plugin.py::test_second"], xdist_group='a')
def test_last(request):
    print("last")
    assert request.session.items[2].name == 'test_last'


def test_first(request):
    print("first")
    assert request.session.items[0].name == 'test_first'

Limitations and known issues:

  • All the tests without dependency (both dependent-on) will run first, then, all tests with connections will run (e.g. the list of items will be as described)
  • Currently, automated xfail is enabled, it should be configurable.

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-node-dependency-1.4.0.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

pytest_node_dependency-1.4.0-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file pytest-node-dependency-1.4.0.tar.gz.

File metadata

  • Download URL: pytest-node-dependency-1.4.0.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for pytest-node-dependency-1.4.0.tar.gz
Algorithm Hash digest
SHA256 1aa3fe11a08edff02d0c86d5ce5302aa0ffd8477164f5cb39d4dbfee81508642
MD5 ed08c377efc3274964166a162b5de640
BLAKE2b-256 3cebd97625c9c64d9e0daa609971e4cc9b348be9580d838ee9a60cd541a085db

See more details on using hashes here.

File details

Details for the file pytest_node_dependency-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_node_dependency-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6775d4ea885d02714e56285a78d403009bcf3949ad3ac9edad0cab9a299e258a
MD5 896186cc043c86f551afeb8e0e15a182
BLAKE2b-256 1c4c4e7eeb9c3de52a0801953aa1a5eff798cc4bbaae88b9aeedefe11cf86d83

See more details on using hashes here.

Supported by

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