Jan Dittberner
78f54d0c92
This commit adds configuration for coverage, pep8 and flake8 to setup.cfg. The .coveragerc is not needed anymore and is removed.
16 lines
396 B
INI
16 lines
396 B
INI
[pep8]
|
|
exclude = migrations
|
|
|
|
[flake8]
|
|
exclude = migrations
|
|
|
|
[coverage:run]
|
|
source = gnuviechadmin,contact_form,dashboard,domains,gvawebcore,managemails,osusers,taskresults,userdbs
|
|
branch = True
|
|
|
|
[coverage:report]
|
|
omit = */migrations/*,*/tests/*.py,*/tests.py,gnuviechadmin/settings/local.py,gnuviechadmin/settings/production.py
|
|
show_missing = True
|
|
|
|
[coverage:html]
|
|
directory = ../coverage-report
|