webdrop-bridge/pytest.ini

20 lines
417 B
INI

[pytest]
minversion = 7.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--cov=src/webdrop_bridge
--cov-report=html
--cov-report=term-missing
--cov-fail-under=0
--strict-markers
markers =
unit: Unit tests
integration: Integration tests
slow: Slow tests
windows: Windows-specific tests
macos: macOS-specific tests