Files
plex-playlist/backend/conftest.py
Cliff Hill 8aa8d41e8a
Some checks failed
CI/CD Pipeline / Backend Tests (Python) (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (TypeScript/Vue) (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
Did some things, made more improvements.
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
2025-10-19 21:35:02 -04:00

15 lines
432 B
Python

"""Pytest configuration for automatic typeguard integration."""
def pytest_configure(config):
"""Configure pytest to use typeguard automatically."""
# This enables typeguard for all functions with type hints
# without requiring @typechecked decorators
pass
def pytest_runtest_setup(item):
"""Set up typeguard for each test run."""
# Import hook is automatically enabled via --typeguard-packages
pass