Spaces:
Sleeping
Sleeping
File size: 239 Bytes
510ab6f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """
FlexTime — pytest configuration
"""
import pytest
def pytest_configure(config):
config.addinivalue_line("markers", "slow: mark test as slow-running")
@pytest.fixture(scope="session")
def anyio_backend():
return "asyncio"
|