[pytest]
testpaths = tests/skillhub
python_files = test_*.py
python_classes = Test*
python_functions = test_*
asyncio_mode = auto
addopts =
    -v
    --tb=short
    --cov=skillhub
    --cov-report=term-missing
    --cov-report=html
markers =
    asyncio: async test marker
    unit: Unit tests
    integration: Integration tests
    slow: Slow running tests
    network: Tests requiring network access