-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (27 loc) · 737 Bytes
/
setup.cfg
File metadata and controls
32 lines (27 loc) · 737 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
27
28
29
30
31
32
[flake8]
exclude = __init__.py
ignore = W504,I101,I100,I201
per-file-ignores =
pd_parser/tests/test_*.py:E402
[tool:pytest]
addopts =
--showlocals --durations=20 -ra --junit-xml=junit-results.xml
--ignore=doc
filterwarnings =
error
[pydocstyle]
convention = pep257
match_dir = ^(?!\.|doc|examples).*$
add-ignore = D100,D104,D107,D413
add-select = D214,D215,D404,D405,D406,D407,D408,D409,D410,D411
[coverage:run]
omit =
# Do not include test script in coverage report
*tests*
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.: