mirror of
https://github.com/django/django.git
synced 2024-11-20 00:14:08 +00:00
4202959b6f
By providing a .coveragerc file with all default settings, users only have to execute "coverage run ./runtests.py" without the need to specify all the possible flags. The same applies to "coverage html" and "coverage xml".
16 lines
205 B
INI
16 lines
205 B
INI
[run]
|
|
branch = True
|
|
omit =
|
|
*/django/utils/autoreload.py
|
|
parallel = True
|
|
source = django
|
|
|
|
[report]
|
|
ignore_errors = True
|
|
omit =
|
|
*/django/conf/locale/*
|
|
*/tests/*
|
|
|
|
[html]
|
|
directory = coverage_html
|