agnes-the-ai-analyst/pytest.ini
ZdenekSrotyr d6458a5b53 feat: add pytest timeout and strict markers
- Add --timeout=60 to pytest.ini to catch hanging tests
- Add --strict-markers to enforce declared markers only
- Install pytest-timeout>=2.0.0 dependency
- All 627 tests pass within 60s timeout
2026-04-09 07:03:44 +02:00

5 lines
207 B
INI

[pytest]
addopts = -m "not live and not docker" --timeout=60 --strict-markers
markers =
live: tests requiring server access (run with '-m live')
docker: tests requiring Docker (run with '-m docker')