Files
gatehouse-api/pytest.ini
T

25 lines
570 B
INI
Raw Normal View History

2026-01-08 01:00:26 +10:30
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
2026-01-20 15:54:00 +10:30
addopts =
2026-01-08 01:00:26 +10:30
-v
--strict-markers
-p no:maas-django
-p no:maas-perftest
-p no:maas-seeds
2026-03-03 18:02:45 +05:45
--cov=gatehouse_app
2026-01-08 01:00:26 +10:30
--cov-report=term-missing
--cov-report=html
--cov-branch
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
2026-01-20 15:54:00 +10:30
external_auth: External authentication tests
oauth: OAuth flow tests
google: Google OAuth tests
github: GitHub OAuth tests
microsoft: Microsoft OAuth tests