1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# ============================================================================
# PYTEST CONFIGURATION FILE: pytest.ini
# ============================================================================
# SEE ALSO:
# * http://pytest.org/
# * http://pytest.org/latest/customize.html
# * http://pytest.org/latest/usage.html
# * http://pytest.org/latest/example/pythoncollection.html#change-naming-conventions
# ============================================================================
# MORE OPTIONS:
# addopts =
# python_classes=*Test
# python_functions=test
# ============================================================================
[pytest]
minversion = 4.2
testpaths = tests
python_files = test_*.py
junit_family = xunit2
addopts =
--junit-xml=build/testing/report.xml
# markers =
# smoke
# slow
# -- PREPARED:
# filterwarnings =
# ignore:.*invalid escape sequence.*:DeprecationWarning
# -- BACKWARD COMPATIBILITY: pytest < 2.8
norecursedirs = .git .tox build dist .venv* tmp* _*
|