19 lines
477 B
Plaintext
19 lines
477 B
Plaintext
[pytest]
|
|
minversion = 6.0
|
|
addopts = -ra -q --disable-warnings
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
markers =
|
|
unit: Unit tests
|
|
integration: Integration tests
|
|
api: API endpoint tests
|
|
security: Security tests
|
|
performance: Performance tests
|
|
slow: Slow running tests
|
|
auth: Authentication tests
|
|
asyncio_mode = auto
|
|
filterwarnings =
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning |