12 lines
305 B
INI
12 lines
305 B
INI
[tool:pytest]
|
|
asyncio_mode = auto
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts = -v --tb=short --strict-markers --strict-config
|
|
markers =
|
|
asyncio: mark test as async
|
|
integration: mark test as integration test
|
|
unit: mark test as unit test
|