-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pytest.ini
26 lines (22 loc) · 1011 Bytes
/
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
# Can also be defined in setup.cfg or tox.ini files, but
# searching stops when the first [pytest] section is found in any of these files.
# There is no merging of configuration values from multiple files.
# Read more on https://pytest.org/latest/customize.html
# -------------------------------------------------------------------------------
[pytest]
# This would tell py.test to not recurse into typical sphinx-build directories or
# into any tmp prefixed directory.
#https://docs.pytest.org/en/latest/reference.html#confval-norecursedirs
norecursedirs = _build build dist tmp* *.egg* frontend* docs* deploy*
# One or more Glob-style file patterns determining which python files are considered
# as test modules.
python_files = test_*.py *_test.py *_tests.py *_t.py
# https://docs.pytest.org/en/latest/reference.html#confval-python_classes
python_classes =
Test*
*Tests
# https://docs.pytest.org/en/latest/reference.html#confval-testpaths
testpaths =
tests
# use coverage plugin
addopts = -s