forked from pharmpy/pharmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (33 loc) · 774 Bytes
/
setup.cfg
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
33
34
35
36
[flake8]
# Set to 120 instead of 100 because black sometimes creates longer lines
max-line-length = 120
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE
asyncio_mode = auto
filterwarnings =
error
# pytest/tox triggers these warnings when running the integration tests with dask distributed
ignore:unclosed <socket
ignore:unclosed event loop
ignore:unclosed context
testpaths = tests
norecursedirs =
integration
testdata
tests/pytest_helper
.ropeproject
python_files =
test_*.py
*_test.py
tests.py
addopts =
-ra
--strict-markers
--doctest-modules
--doctest-glob=\*.rst
--tb=short
[darglint]
ignore=DAR401,DAR402