Spaces:
Sleeping
Sleeping
File size: 581 Bytes
235461a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
-m "not database"
--ignore=db_connection_test.py
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests (deselect with '-m "not integration"')
database: marks tests that require database connection (deselect with '-m "not database"')
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
|