Skip to main content

A small snippet for nicer PyTest's Parametrize

Project description

Nice Parametrize

Usage example:

from nice_parametrize import parametrize

@parametrize(["a", "b", "result"], {
    "equal": [1, 1, True],
    "unequal": [1, 2, False],
})
def my_test(a, b, result):
    assert (a == b) is result

A small Python snippet that makes pytest.mark.parametrize a little nicer to use.

pytest.mark.parametrize has a nice feature called ids that allows you to name your argument lists. This is very useful for stating the intention of the tested case. But the problem is that the names are given in a separate parameter, ids, so it is not easy to see at a glance which arguments match which case:

import pytest

@pytest.mark.parametrize(["a", "b", "result"], [
    [1, 1, True], 
    [1, 2, False]], 
ids=["equal", "unequal"])
def my_test(a, b, result):
    assert (a == b) is result

This might get very cumbersome with a long parameter list and a lot of cases. So instead, nice_parametrize allows you to pass in a dict that maps between the ID of the argument list to the list itself. This way it is clear which case match which arguments, and it is easier to understand and debug your test.

Also supports additional keyword arguments to be passed to the underlying pytest.mark.parametrize.

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-nice-parametrize-1.0.1.tar.gz (2.3 kB view hashes)

Uploaded Source

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