Skip to main content

Using pytest markers to track functional coverage and filtering of tests

Project description

Security Status https://img.shields.io/badge/code%20style-black-000000.svg

Using pytest markers to track functional coverage and filtering of tests


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

Features

  • Definition of CoverageMarkers© in YAML format

  • Support for applying CoverageMarkers© to tests

  • Filtering of tests based on CoverageMarkers©

  • Inclusion of CoverageMarkers© in JSON report

Installation

You can install “pytest-coveragemarkers” from PyPI:

$ pip install pytest-coveragemarkers
# or
$ poetry add pytest-coveragemarkers

Usage

Step 1: Define your coverage markers yaml.

Using the format:

markers:
  - name: <marker_name>
    allowed:
      - <marker_value_1>
      - <marker_value_2>
  - name: <marker2_name>
    allowed:
      - <marker2_value_1>
      - <marker2_value_2>

Then decorate your tests with them

import pytest

@pytest.mark.marker_name(['value1', 'value2'])
@pytest.mark.marker2_name(['value1', 'value2'])
def test_x():
    ...

@pytest.mark.marker2_name(['value1', 'value2'])
def test_y():
    ...

Then when the tests are executed with

pytest --json-report --markers-location=/full/path/to/coverage_markers.yml

Then the JSON Test Report output from the test execution contains:

"tests": [
{
  "nodeid": "...",
  "metadata": {
    "cov_markers": {
      "marker_name": {
        "value1": true,
        "value2": true
      },
      "marker2_name": {
        "value1": true,
        "value2": true
      }
    }
  }
},
...
]

This can then be used to generate test coverage details based on the coverage markers. A nice demo will be produced to give examples of usage.

But wait there is another benefit:

We can filter tests for execution based on their coverage markers

pytest \
    --filter='{"and": [{"eq": ["marker_name.value1", true]}]}' \
    --json-report \
    --markers-location=/full/path/to/coverage_markers.yml

The above command run against the tests defined above would select ‘test_x’ and deselect ‘test_y’ for execution

Other examples of filters are:

You can also supply the path to a json file containing your filter. Use argument –filter-location or key FilterLocation in the pytest.ini file.

Testing

Nox is used by this project to execute all tests. To run a specific set of tests execute the below line:

$ poetry run nox -s <session_name>

Where session_name can be one of the following

Nox Sessions

Session Name

Session Details

unit_tests

Execute all tests marked as unit

functional_tests

Execute all tests marked as functional

Thought Process

  • The pytest_docs talks about using markers to set metadata on tests and use the markers to select required tests for execution.

  • For the markers I want to add, I also want to specify a list of values that go along with that marker. E.g. If the marker was ‘colour’ then supported values may be ‘Red’, ‘Green’, ‘Gold’.

  • I also want the list of values validated against supported values so no unsupported values can be added. E.g. If the marker was ‘colour’ then a value of ‘Panda’ would not be allowed.

  • Then all this meta data I want to come out in the junit json report.

  • Next I want to use these markers and their supported values to filter tests. For this I need a more powerful filter engine.

Documentation

To build the docs run:

poetry run mkdocs serve

License

Distributed under the terms of the MIT license, “pytest-coveragemarkers” is free and open source software

Issues

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

Future Changes

  • Type-Hints

  • Full Test Coverage

  • Full Documentation

  • Refactor/rewrite

  • Pick one, yml or json?

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-coveragemarkers-1.1.0.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

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

pytest_coveragemarkers-1.1.0-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-coveragemarkers-1.1.0.tar.gz.

File metadata

  • Download URL: pytest-coveragemarkers-1.1.0.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.15 Darwin/22.1.0

File hashes

Hashes for pytest-coveragemarkers-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c839058589bc4a0ce94d34e5d2f59aad686db2609326cd86d2ea34b7bc51afc6
MD5 627ad7804710a2bd6ba86b158f3185d8
BLAKE2b-256 ecb91c9fdef24c90c97d057782427ed641a0c7ca7f9a9a8a86c02e77f9c65df5

See more details on using hashes here.

File details

Details for the file pytest_coveragemarkers-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_coveragemarkers-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 094aefb151737f84f4f42b327cde8ca313e9a11cb9a8037adf75ba8f64f8282a
MD5 7149d3d270ca98643a7614227f7a8c05
BLAKE2b-256 3c6c9295c86960b2df72d94e3c396dcbb8a0802170a5c1eaead27aae65032abd

See more details on using hashes here.

Supported by

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