Files
WPIQ/setup.cfg

28 lines
545 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]
ignore = F405,W504,S322,S404,S603,s607,s602
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
max-complexity = 10