Files
DashBoard/pytest.ini
2026-02-08 08:30:48 +08:00

13 lines
446 B
INI

[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short
markers =
integration: mark test as integration test (requires database)
e2e: mark test as end-to-end test (requires running server and playwright)
stress: mark test as stress test (may take longer, tests system stability)
load: mark test as load test (concurrent requests, tests throughput)