Did some things, made more improvements.
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

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-19 21:35:02 -04:00
parent 6068faf026
commit 8aa8d41e8a
21 changed files with 3247 additions and 406 deletions

14
backend/conftest.py Normal file
View File

@@ -0,0 +1,14 @@
"""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