17 lines
397 B
INI
17 lines
397 B
INI
[pytest]
|
|
asyncio_mode = auto
|
|
asyncio_default_fixture_loop_scope = session
|
|
asyncio_default_test_loop_scope = session
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
pythonpath = .
|
|
addopts =
|
|
-v
|
|
--tb=short
|
|
--strict-markers
|
|
markers =
|
|
asyncio: async test
|
|
integration: tests requiring real DB connection
|
|
unit: pure logic tests (no DB) |