-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (20 loc) · 759 Bytes
/
pytest.ini
File metadata and controls
22 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ============================================================================
# PYTEST CONFIGURATION FILE: pytest.ini
# ============================================================================
# SEE ALSO:
# * http://pytest.org/
# * http://pytest.org/customize.html
# * http://pytest.org/example/pythoncollection.html#change-naming-conventions
# ============================================================================
# MORE OPTIONS:
# addopts =
# python_classes=*Test
# python_functions=test
# ============================================================================
[pytest]
minversion = 2.3
norecursedirs= .git .tox build dist tmp* _*
python_files = test_*.py
# usefixtures = tmpdir
# markers =
# xxx: mark an experimental test.