6 lines
151 B
Python
6 lines
151 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
# Enable asyncio mode for all tests
|
||
|
|
def pytest_configure(config):
|
||
|
|
config.addinivalue_line("markers", "asyncio: mark test as async")
|