mirror of
https://github.com/Routstr/routstr-core.git
synced 2026-08-09 19:04:47 +00:00
17 lines
433 B
INI
17 lines
433 B
INI
[tool: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
|
|
--disable-warnings
|
|
-p no:warnings
|
|
markers =
|
|
asyncio: marks tests as async (deselect with '-m "not asyncio"')
|
|
integration: marks tests as integration tests
|
|
unit: marks tests as unit tests |