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