9 lines
220 B
Python
9 lines
220 B
Python
"""pytest fixtures for py_dvt_ate tests."""
|
|
|
|
import pytest
|
|
|
|
|
|
def pytest_configure(config: pytest.Config) -> None:
|
|
"""Configure pytest markers."""
|
|
config.addinivalue_line("markers", "asyncio: mark test as async")
|