-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (18 loc) · 439 Bytes
/
Copy pathsetup.cfg
File metadata and controls
21 lines (18 loc) · 439 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool:pytest]
# See https://docs.pytest.org/en/6.2.x/customize.html
testpaths =
tests
adopts =
--strict
--doctest-modules
--durations=0
[coverage:report]
# See https://coverage.readthedocs.io/en/coverage-4.0.3/config.html
exclude_lines =
pragma: no-cover
pass
[flake8]
# See https://flake8.pycqa.org/en/latest/user/configuration.html
max-line-length = 150
max-complexity = 10
per-file-ignores = __init__.py:F401