mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
.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:
parent
e3b547f5e1
commit
51e2d3e7d2
1 changed files with 2 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
|||
[run]
|
||||
source = configurations,tests
|
||||
source = .
|
||||
include = configurations/*,tests/*
|
||||
branch = 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue