Skip to main content

Pytest decorator for parametrizing tests with default iterables.

Project description

image image image image build image CodeQL image

Pytest decorator for parametrizing tests with default iterables, providing alternative syntax for pytest.mark.parametrize.

Usage

Decorate tests with iterable default values. Other fixtures can still be used as normal.

functions

from parametrized import parametrized

@parametrized
def test(..., name=values):
    """test single parametrized arg with each value"""

@parametrized.zip
def test(name=values, name1=values1, ...):
    """test parametrized args with zipped values"""

@parametrized.product
def test(name=values, name1=values1, ...):
    """test parametrized args with cartesian product of values"""

Zip before and after example:

@pytest.mark.parametrize("test_input,expected", [
    ("3+5", 8),
    ("2+4", 6),
    ("6*9", 42),
])
def test_eval(test_input, expected):
    assert eval(test_input) == expected

@parametrized.zip
def test_eval(test_input=["3+5", "2+4", "6*9"], expected=[8, 6, 42]):
    assert eval(test_input) == expected

Product before and after example:

@pytest.mark.parametrize("x", [0, 1])
@pytest.mark.parametrize("y", [2, 3])
def test_foo(x, y):
    pass

@parametrized.product
def test_foo(x=[0, 1], y=[2, 3]):
    pass

pytest.param is supported for single values or .product.

fixtures

Parametrized fixtures which simply return their param.

fixture_name = parametrized.fixture(*params, **kwargs)

Before and after example:

@pytest.fixture(params=[0, 1], ids=["spam", "ham"])
def a(request):
    return request.param

a = parametrized.fixture(0, 1, ids=["spam", "ham"])

Installation

pip install pytest-parametrized

Tests

100% branch coverage.

pytest [--cov]

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_parametrized-1.8.tar.gz (3.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_parametrized-1.8-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest_parametrized-1.8.tar.gz.

File metadata

  • Download URL: pytest_parametrized-1.8.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pytest_parametrized-1.8.tar.gz
Algorithm Hash digest
SHA256 1b2bb0a53f67e5cb45cb49f533ca17bf3c2f715042aaa6be940d5b9dc65effc7
MD5 023a9fd1147d09229535390ed9d14b40
BLAKE2b-256 c4b26400be9ee0790233a0d7686bbb8a37c673ee3d7f70112bf33a198500e9e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_parametrized-1.8.tar.gz:

Publisher: release.yml on coady/pytest-parametrized

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_parametrized-1.8-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_parametrized-1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 aee789e09c89e82b09dfcfa8acb518b6354da169826d058da0152cd39fda0add
MD5 ffdfcecb8eb26fb4e1ad6ea8353213e8
BLAKE2b-256 d1d18a87c9fe89e9439a36d44c2d4aeee0cfdf10f61c7e074fcbcade0febb0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_parametrized-1.8-py3-none-any.whl:

Publisher: release.yml on coady/pytest-parametrized

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

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