-
Notifications
You must be signed in to change notification settings - Fork 12
/
pytest.ini
34 lines (30 loc) · 1.09 KB
/
pytest.ini
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
--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* _*