forked from diefans/buvar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
32 lines (31 loc) · 902 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
27
28
29
30
31
32
[pytest]
norecursedirs = .git .mypy_cache .tox
testpaths = src tests
doctest_plus = enabled
addopts=
-rfE
--strict
--durations 10
--cov-config .coveragerc
--doctest-modules
--doctest-glob README.rst
--color yes
--ignore-glob **.*@neomake*.py
--ignore __pycache__
--benchmark-disable
;--pdbcls=IPython.terminal.debugger:TerminalPdb
log_format = %(asctime)s %(levelname)s %(message)s
log_date_format = %Y-%m-%d %H:%M:%S
markers =
webtest: mark a test as a webtest.
filterwarnings =
# Error by default
error
ignore::RuntimeWarning
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::ImportWarning
ignore::ResourceWarning
# ignore ResourceWarnings, since pytest raises PytestUnraisableExceptionWarning
# unpredictably -> I have no clue what is the source of this behaviour XXX FIXME TODO
mock_use_standalone_module = true