-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
21 lines (21 loc) · 793 Bytes
/
pytest.ini
File metadata and controls
21 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
addopts = -v --tb=short --strict-markers
markers =
unit: Unit tests (fast, no external dependencies)
integration: Integration tests (may need Docker)
e2e: End-to-end tests (require full application context)
slow: Slow tests (network, large data)
docker: Tests that require Docker to be running
security: Security-focused tests (input validation, injection prevention)
performance: Performance benchmark tests
stress: Stress tests for edge conditions
benchmark: Benchmark tests for establishing baselines
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning