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.2.tar.gz (9.2 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.2-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pytest_case_provider-0.1.2.tar.gz
  • Upload date:
  • Size: 9.2 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.2.tar.gz
Algorithm Hash digest
SHA256 1fb6291cea92d30eace2eac64827c4bc3ee130f3890610a0b41e1fedeccf2287
MD5 7632deb8c592838bc8948ded4b71298e
BLAKE2b-256 0f2b09ccfd2d32509a926a13a3a15e0a99503e1d4e068d7e3545fecea38c9774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytest_case_provider-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1bd8276122c7fe12ddcdee3753fce3a419cd1c816fb9425bee270038f5151996
MD5 7249572ca30d1e8d14996161964c9c68
BLAKE2b-256 b78ffca9cb14fdfba1a4fd09c6bf0405f85ed14866a570492528cc3a7642e1c6

See more details on using hashes here.

Provenance

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