Files
training-software/pytest.ini
Paperclip CTO 333c7b8e11
All checks were successful
CI / lint (push) Successful in 6s
CI / test (push) Successful in 22s
CI / build-container (push) Successful in 1m21s
fix(ci): run tests without redis and align permission/upload expectations
2026-05-18 15:09:16 +02:00

16 lines
547 B
INI

[pytest]
DJANGO_SETTINGS_MODULE = config.settings.test
python_files = tests/test_*.py **/tests/test_*.py
python_classes = Test*
python_functions = test_*
addopts =
--reuse-db
--strict-markers
markers =
asyncio: asyncio tests
smoke: smoke tests that verify startup and critical wiring
settings: settings-matrix tests
integration: tests requiring live service connections
security: security regression tests (headers, CSP, throttling, middleware)
upload: upload defense tests (extension, size, magic-byte validation)