15 lines
401 B
INI
15 lines
401 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts = -v --tb=short
|
|
asyncio_mode = auto
|
|
asyncio_default_fixture_loop_scope = function
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
integration: marks tests as integration tests
|
|
asyncio: marks tests as async tests
|
|
filterwarnings =
|
|
ignore::DeprecationWarning
|