Skip to main content

a pytest plugin to tag tests

Project description

Build Status PyPI version Python Version Code style License

pytest-tagging

pytest plugin that allows tagging tests using arbitrary strings.

It supports selecting only tests with a specific tag, and displays a counter of how many tests failed for each specific tag.

This package exists because doing all of this with pytest.mark is painful, since it requires registering marks, and you cannot use variables defined elsewhere easily.

Usage

@pytest.mark.tags("JIRA-XX", "integration", constants.COMPONENT_X)
def test_foo():
    assert False

Invocation:

pytest --tags integration --tags MY_COMPONENT_NAME

pytest-tagging-screenshot

By default, all tests that match at least one tag will be collected. To only select tests that have all the provided tags, use the option --tags-operand=AND, like so:

pytest --tags integration --tags MY_COMPONENT_NAME --tags-operand AND

You can also display all available tags by specifying --tags empty:

pytest --tags
>>Available tags:
>>foo
>>bar

Combining tags

Tags can be combined using pytest_tagging.combine_tags:

from pytest_tagging import combine_tags
combine_tags("all", "foo", "bar")

Then you can execute pytest --tags all and it will run all tests with foo and bar tags

Excluding tags

You can exclude tags for a particular test run by using the option --exclude-tags in a similar way to the --tags option. Notice tests with tags that are excluded will not be executed, even if they contain a tag that was selected with --tags.

pytest --tags mobile --tags web --exclude-tags flaky

Extra

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_tagging-1.6.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

pytest_tagging-1.6.0-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file pytest_tagging-1.6.0.tar.gz.

File metadata

  • Download URL: pytest_tagging-1.6.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.2 Linux/6.5.0-1025-azure

File hashes

Hashes for pytest_tagging-1.6.0.tar.gz
Algorithm Hash digest
SHA256 950ab148a27f688a322cde656248cdcb97d75f88f0b91e26312c2e005ec9dab2
MD5 5c0a2073d89f1cef362ed2753877b6fa
BLAKE2b-256 646f04cf9f808df000e76e8b86045d86b0972b3b72e92c991bf61e85279bd9d4

See more details on using hashes here.

File details

Details for the file pytest_tagging-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_tagging-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.2 Linux/6.5.0-1025-azure

File hashes

Hashes for pytest_tagging-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b6ba4053b226a4911a749ecdc2dacce04337d2748682a5cb6bbcec3a401be1c
MD5 378ceba440a499fff541bff59aa6dfa1
BLAKE2b-256 6804e7d37635b8d1a835a45e741fbdbe9708e1cc62329ee2e61cb871f81d7b8a

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