Skip to main content
PyPI version Python versions See Build Status on GitHub Actions

A pytest plugin to uncollect tests based on a condition without the tests being included in the skipped for deselected report counts. This makes it easier use the Cartesian product of two different usages of pytest.mark.parametrize where you want to disable a specific combination.

This pytest plugin was generated with Cookiecutter along with @hackebrot’s cookiecutter-pytest-plugin template.

Requirements

  • pytest > 6.2.0

For development requirements, run

pip install -r requirements-dev.txt

Installation

You can install “pytest-uncollect-if” via pip from PyPI

pip install pytest-uncollect-if

If you do not have autoload enabled, add the plugin to your top-level conftest.py

pytest_plugins = ("pytest_uncollect_if.plugin",)

Usage

The marker takes a single argument func which accepts parameters as **kwargs and returns a boolean value. If the return value is True, the test will be uncollected. To avoid fragile statements that fail on extra parameters, be sure to add **kwargs to your function signature.

param1_decorator = pytest.mark.parametrize("param1", [1, 2, 3, 4])
param2_decorator = pytest.mark.parametrize("param2", [1, 2, 3, 4])


# uncollect if param and param2 are equal
@pytest.mark.uncollect_if(func=lambda param1, param2, **kwargs: param1 == param2)
def test_uncollect_if(param1, param2):
    assert param != param2

A typed alias for pytest.mark.uncollect_if is available as uncollect_if

from pytest_uncollect_if import uncollect_if

param1_decorator = pytest.mark.parametrize("param1", [1, 2, 3, 4])
param2_decorator = pytest.mark.parametrize("param2", [1, 2, 3, 4])


# uncollect if param and param2 are equal
@uncollect_if(func=lambda param1, param2, **kwargs: param1 == param2)
def test_uncollect_if(param1, param2):
    assert param != param2

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-uncollect-if” is free and open source software

Issues

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

Download files

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

Source Distribution

pytest_uncollect_if-0.1.4.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_uncollect_if-0.1.4-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file pytest_uncollect_if-0.1.4.tar.gz.

File metadata

  • Download URL: pytest_uncollect_if-0.1.4.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pytest_uncollect_if-0.1.4.tar.gz
Algorithm Hash digest
SHA256 a914ba1ad5debb8b689d2147e88afbf308387151a07544e8bc0958c814e141a5
MD5 9200e78722976f51e5e5a5540429642e
BLAKE2b-256 dff7005ccf7f82d1ffe6c3eff70a4029d387613f03b842028c0f481d969dbfd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_uncollect_if-0.1.4.tar.gz:

Publisher: release.yml on jasongi/pytest-uncollect-if

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_uncollect_if-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_uncollect_if-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7c94f5239c5df009fbc6a4140138d984edd50fb5831745a0ed1f73b94bb409e8
MD5 0d113822af46cb91e825cc1c858e2047
BLAKE2b-256 4c798350be059ec5aeaad58f34f4554c2cae91bb5543a1d5e50489b795918a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_uncollect_if-0.1.4-py3-none-any.whl:

Publisher: release.yml on jasongi/pytest-uncollect-if

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.4 This release

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page