10 lines
303 B
INI
10 lines
303 B
INI
|
|
[pytest]
|
||
|
|
# Enable pytest-asyncio so `async def test_*` functions run without a
|
||
|
|
# per-test marker. Network-dependent macro tests degrade gracefully (the
|
||
|
|
# connector returns None when offline).
|
||
|
|
asyncio_mode = auto
|
||
|
|
testpaths = tests
|
||
|
|
python_files = test_*.py
|
||
|
|
filterwarnings =
|
||
|
|
ignore::DeprecationWarning
|