mosaicode/pytest.ini

19 lines
488 B
INI

[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--color=yes
markers =
gui: marks tests as requiring GUI (deselect with '-m "not gui"')
integration: marks tests as integration tests
slow: marks tests as slow running
unit: marks tests as unit tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning