aboutsummaryrefslogtreecommitdiff
path: root/pytest.ini
blob: 814d764e36a71b7fd87136681eeafb459ba78518 (plain)
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
34
# ============================================================================
# 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 = --metadata PACKAGE_UNDER_TEST parse_type
    --metadata PACKAGE_VERSION 0.5.3
    --html=build/testing/report.html --self-contained-html
    --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* _*