django-configurations/.coveragerc
Daniel Hahler 51e2d3e7d2 .coveragerc: use include instead of multiple sources (#183)
This will generate a better coverage.xml file, which makes it easier for
codecov hopefully.

Old:

    <sources>
            <source>…/Vcs/django-configurations/configurations</source>
            <source>…/Vcs/django-configurations/tests</source>
    </sources>
    <packages>
            <package branch-rate="0.7178" complexity="0" line-rate="0.8902" name=".">

New:
    <sources>
            <source>…/Vcs/django-configurations</source>
    </sources>
    <packages>
            <package branch-rate="0.712" complexity="0" line-rate="0.8126" name="configurations">

Fixes d364802a8a (commitcomment-24826518).
2017-10-07 18:03:03 +02:00

4 lines
63 B
INI

[run]
source = .
include = configurations/*,tests/*
branch = 1