-
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpytest.ini
More file actions
26 lines (22 loc) · 597 Bytes
/
Copy pathpytest.ini
File metadata and controls
26 lines (22 loc) · 597 Bytes
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
[pytest]
python_files =
tests/*.py
# Coverage flags intentionally live in the tox [testenv] commands, not
# here, so a bare `pytest -k foo` stays fast. CI enforces the 100% gate
# via tox. `--doctest-modules` still collects progressbar/*.py doctests
# regardless of `python_files` (which only scopes test-module collection).
addopts =
--doctest-modules
norecursedirs =
.*
_*
build
benchmarks
dist
docs
progressbar/terminal/os_specific
tmp*
filterwarnings =
ignore::DeprecationWarning
markers =
no_freezegun: Disable automatic freezegun wrapping