Aniworld/pytest.ini

23 lines
651 B
INI

[tool:pytest]
minversion = 6.0
addopts = -ra -q --strict-markers --strict-config --cov=src --cov-report=html --cov-report=term
testpaths =
tests
python_files =
test_*.py
*_test.py
python_classes =
Test*
python_functions =
test_*
markers =
slow: marks tests as slow (deselect with -m "not slow")
integration: marks tests as integration tests
e2e: marks tests as end-to-end tests
unit: marks tests as unit tests
api: marks tests as API tests
web: marks tests as web interface tests
smoke: marks tests as smoke tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning