From 51e2d3e7d246cd5142cee3d20f293f8c98bc66a0 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 7 Oct 2017 18:03:03 +0200 Subject: [PATCH] .coveragerc: use include instead of multiple sources (#183) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will generate a better coverage.xml file, which makes it easier for codecov hopefully. Old: …/Vcs/django-configurations/configurations …/Vcs/django-configurations/tests New: …/Vcs/django-configurations Fixes https://github.com/jazzband/django-configurations/commit/d364802a8aa8562371769f5445efb72a83786576#commitcomment-24826518. --- .coveragerc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index 046fca2..0daa53e 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,3 +1,4 @@ [run] -source = configurations,tests +source = . +include = configurations/*,tests/* branch = 1