Skip to main content

Advanced pytest parametrization plugin that generates test case instances from sync or async factories.

Project description

pytest-case-provider

Latest Version Python Supported Versions Pytest versions MyPy Strict Test Coverage Downloads GitHub stars

Case parametrization for pytest with fixture, class, and async support. Provides declarative, typed case injection for both sync and async test functions.


Overview

pytest-case-provider extends pytest’s parametrization system.
It was inspired by pytest-cases, but redesigned from scratch for strict typing, async support, and fixture-native case injection.

It allows attaching case providers directly to test functions or methods via @inject_cases and
@inject_cases_method.

Cases can be:

  • Synchronous or asynchronous.
  • Iterable or async-iterable.
  • Fixture-dependent.
  • Composable across tests or classes.

API Summary

Symbol Description
inject_cases Decorator/injector for test functions
inject_cases_method Same as above, for test class methods
CaseStorage[T] Mutable case storage container
CompositeCaseStorage[T] Aggregates multiple CaseCollector

Installation

pip install pytest-case-provider

Usage example

import typing
from dataclasses import dataclass, replace
import pytest
from pytest_case_provider import inject_cases, inject_cases_method


@dataclass(frozen=True)
class MyCase:
    foo: int


@pytest.fixture
def number() -> int:
    return 42


# Regular test
def test_without_case_injection() -> None:
    assert True


# Case-enabled test function
@inject_cases
def test_case_injected(case: MyCase) -> None:
    assert isinstance(case, MyCase)


# Cross-inject from another test
@inject_cases(test_case_injected)
def test_case_increment(case: MyCase, case_foo_inc: MyCase) -> None:
    assert case.foo + 1 == case_foo_inc.foo


# Define case providers
@test_case_injected.case()
def case_one() -> MyCase:
    return MyCase(foo=1)


@test_case_injected.case()
def case_two() -> MyCase:
    return MyCase(foo=2)


# Use other fixtures in case providers
@test_case_injected.case()
def case_number(number: int) -> MyCase:
    return MyCase(foo=number)


# Async case provider
@test_case_injected.case()
async def case_async_generated() -> MyCase:
    return MyCase(foo=999)


# Iterable provider
@test_case_injected.case()
def case_iterable() -> typing.Iterator[MyCase]:
    yield MyCase(foo=10)


# Async iterable provider
@test_case_injected.case()
async def case_async_iterable() -> typing.Iterator[MyCase]:
    yield MyCase(foo=20)


# Access case object from fixture
@pytest.fixture
def case_foo_inc(case: MyCase) -> MyCase:
    return replace(case, foo=case.foo + 1)


# Example class-based usage
class TestClass:
    @inject_cases_method
    def test_class_cases(self, case: MyCase) -> None:
        assert isinstance(case, MyCase)

    @test_class_cases.case()
    def case_three(self) -> MyCase:
        return MyCase(foo=3)

    @test_class_cases.case()
    def case_four(self) -> MyCase:
        return MyCase(foo=4)

Test Discovery Output

Pytest will expand each injected case as a distinct test variant using pytest's parametrization:

test_example.py::test_case_injected[case_one]
test_example.py::test_case_injected[case_two]
test_example.py::test_case_injected[case_number]
test_example.py::test_case_injected[case_async_generated]
test_example.py::test_case_injected[case_iterable]
test_example.py::test_case_injected[case_async_iterable]
test_example.py::test_case_increment[case_one]
test_example.py::test_case_increment[case_two]
test_example.py::test_case_increment[case_number]
test_example.py::test_case_increment[case_async_generated]
test_example.py::test_case_increment[case_iterable]
test_example.py::test_case_increment[case_async_iterable]
test_example.py::TestClass::test_class_cases[case_three]
test_example.py::TestClass::test_class_cases[case_four]

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_case_provider-0.2.1.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

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

pytest_case_provider-0.2.1-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file pytest_case_provider-0.2.1.tar.gz.

File metadata

  • Download URL: pytest_case_provider-0.2.1.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytest_case_provider-0.2.1.tar.gz
Algorithm Hash digest
SHA256 7a90dbdc3da5e58cfcd58d8f2c05b2c53f2229bb925593ff89fe5798e96d7235
MD5 82f3536ca6997c66005d825882bf87d2
BLAKE2b-256 73d0878d3634e41abd47ad8707ede5be7f914e2662bf5de828fec53b94c07dba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_case_provider-0.2.1.tar.gz:

Publisher: publish.yaml on zerlok/pytest-case-provider

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_case_provider-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_case_provider-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fa87479deb347f8dbb358f27a252ad78865533faf99146898f03561ec10a6038
MD5 b84cb338a7fbd7ff503a3e960ae7bee6
BLAKE2b-256 9254ebe14f4b1c77cbdbbf72d392173bee3001c8ad9f8b1bd6c2aed04b082f2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_case_provider-0.2.1-py3-none-any.whl:

Publisher: publish.yaml on zerlok/pytest-case-provider

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