18 lines
470 B
INI
18 lines
470 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
asyncio_mode = auto
|
|
asyncio_default_fixture_loop_scope = function
|
|
asyncio_default_test_loop_scope = function
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
--strict-markers
|
|
--disable-warnings
|
|
markers =
|
|
unit: marks tests as unit tests
|
|
integration: marks tests as integration tests
|
|
slow: marks tests as slow running
|
|
asyncio: marks tests as asyncio tests |