Skip to main content

A pytest plugin to list unused fixtures after a test run.

Project description

pytest-unused-fixtures

A pytest plugin to list unused fixtures after a test run.

The plugin watches all fixtures which are used in a test run, and then compares it to all the fixtures available in the same test collection. It then prints out all the fixtures which were not used, groupped by where they were defined.

Running the tests is required to accurately record which fixtures are used, as pytest provides ways of dynamically requesting fixtures, and pure static analysis will not catch those.

Installation

$ pip install pytest-unused-fixtures

Usage

After installing the package, the plugin is enabled by adding the switch --unused-fixtures.

Paths of fixtures can be ignored with one or multiple --unused-fixtures-ignore-path arguments. For example --unused-fixtures-ignore-path=venv will ignore all fixtures defined in the venv folder.

Ignoring specific fixtures from report

Sometimes there will be fixture which are unused on purpose, for example when used in tests which are skipped by default. A decorator is provided for ignoring fixtures from the unused report. See the example for usage:

import pytest
from pytest_unused_fixtures import ignore_unused_fixture

@pytest.fixture
@ignore_unused_fixture
def ignored_fixture():
    pass

Development

Poetry (dependencies) and pre-commit (coding standards) are required for development. There are some tests, obviously written in pytest.

$ poetry install
$ pre-commit install
$ pytest tests

Thanks

Many thanks to

Changelog

0.1.3 (Jun 30, 2023)

  • Print line number
  • Support Python 3.9

0.1.2 (Jun 15, 2023)

  • Fix typo, add repository to PyPI
  • Update location handling with respect to showing fixture locations and ignoring paths

0.1.1 (Jun 14, 2023)

  • Fix location handling
  • Add decorator for ignoring fixtures from report

0.1.0 (Jun 14, 2023)

  • First Release

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_unused_fixtures-0.1.4.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

pytest_unused_fixtures-0.1.4-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for pytest_unused_fixtures-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c9f890060a644c1d411f8f368f89d5b6bb44c597e8d857d29dfdb11e132d9cf9
MD5 1623dec404fd64277c650de0c9313caf
BLAKE2b-256 d018f2c8c22813229caf50ab49c9208dd1556877b210369fef61c41ddb6eb887

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pytest_unused_fixtures-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 16c9e5ccb6780fd0b764ddaf8da4da79c1e6863665f754e1894bb2afdeca9770
MD5 ebc7961b37d2e3326d69be99ba0ddb4e
BLAKE2b-256 1503897764c873bc12bffbe67a9bb131e7a24a5ad2346c8406ad46f78540a703

See more details on using hashes here.

Provenance

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