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 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, kw_only=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.1.1.tar.gz (9.1 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.1.1-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytest_case_provider-0.1.1.tar.gz
  • Upload date:
  • Size: 9.1 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.1.1.tar.gz
Algorithm Hash digest
SHA256 0af993cb1adc2496256cdc30fe612b0795bc251d1b531be6cdd81aec7bd0aa9a
MD5 cc8a4f2afe81785755bc5259973d8be4
BLAKE2b-256 24165e199b06bb001eeb0b57f41852f9447a6cbe61cf769b58144cde4394d31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_case_provider-0.1.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.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_case_provider-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4843fa07c7923382d7d19ad7a8263f520dc080c6b3b10fd037786de5497b0c9a
MD5 81cbd097c1eea056cd20c61213998062
BLAKE2b-256 ba9e221e0a453594945bdfa512290bc445ced5ff40d155b8965a195824b3ff6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_case_provider-0.1.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