Files
WPIQ/setup.cfg

30 lines
578 B
INI
Raw Normal View History

2019-09-24 00:24:42 +02:00
2018-11-13 21:55:59 +01:00
[nosetests]
2019-09-24 00:24:42 +02:00
verbosity=2
2018-11-13 21:55:59 +01:00
debug=0
detailed-errors=1
with-coverage=1
cover-package=wo
2019-09-24 00:24:42 +02:00
cover-inclusive=1
2018-11-13 21:55:59 +01:00
cover-erase=1
cover-html=1
cover-html-dir=coverage_report/
2019-10-08 17:29:01 +02:00
where=tests/
[metadata]
license-file = LICENSE
[flake8]
2024-05-23 16:09:37 +02:00
ignore = F405,W504,S322,S404,S603,s607,s602,C901,W503
2023-08-05 15:47:01 +02:00
max-line-length = 120
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
2024-05-23 16:09:37 +02:00
max-complexity = 10