1# ============================================================================
2# PYTEST CONFIGURATION FILE
3# ============================================================================
4# NOTE:
5#   Can also be defined in in tox.ini or pytest.ini file.
6#
7# SEE ALSO:
8#  * http://pytest.org/
9#  * http://pytest.org/latest/customize.html
10#  * http://pytest.org/latest/usage.html
11# ============================================================================
12# MORE OPTIONS:
13#  addopts =
14#  python_classes=*Test
15#  python_functions=test_*
16# ============================================================================
17
18[pytest]
19minversion    = 2.8
20testpaths     = test tests
21python_files  = test_*.py
22# -- BACKWARD COMPATIBILITY: pytest < 2.8
23norecursedirs = .git .tox attic build dist py.requirements tmp* _WORKSPACE
24
25