.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).
This commit is contained in:
Daniel Hahler 2017-10-07 18:03:03 +02:00 committed by GitHub
parent e3b547f5e1
commit 51e2d3e7d2

View file

@ -1,3 +1,4 @@
[run]
source = configurations,tests
source = .
include = configurations/*,tests/*
branch = 1