mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 19:44:00 +03:00
Merge pull request #2533 from danihodovic/store-coveragerc-in-setup.cfg
Store coverage config in setup.cfg
This commit is contained in:
commit
9b6d29d491
|
@ -1,5 +0,0 @@
|
||||||
[run]
|
|
||||||
include = {{cookiecutter.project_slug}}/*
|
|
||||||
omit = *migrations*, *tests*
|
|
||||||
plugins =
|
|
||||||
django_coverage_plugin
|
|
|
@ -21,3 +21,9 @@ django_settings_module = config.settings.test
|
||||||
[mypy-*.migrations.*]
|
[mypy-*.migrations.*]
|
||||||
# Django migrations should not produce any errors:
|
# Django migrations should not produce any errors:
|
||||||
ignore_errors = True
|
ignore_errors = True
|
||||||
|
|
||||||
|
[coverage:run]
|
||||||
|
include = {{cookiecutter.project_slug}}/*
|
||||||
|
omit = *migrations*, *tests*
|
||||||
|
plugins =
|
||||||
|
django_coverage_plugin
|
||||||
|
|
Loading…
Reference in New Issue
Block a user