summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-09-08 15:07:30 -0400
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-09-08 15:07:30 -0400
commit3d6e198dfa0eed92414f949c84128c4c46eb6f1a (patch)
treea09ca87d46653a011447f11410555a2fc1ea9030
parent89f126628286e2dcdf846aa32b530d54558055f8 (diff)
downloadbuildstream-3d6e198dfa0eed92414f949c84128c4c46eb6f1a.tar.gz
.coveragerc: Configuring so that reports from different environments can be combined
-rw-r--r--.coveragerc17
1 files changed, 10 insertions, 7 deletions
diff --git a/.coveragerc b/.coveragerc
index b33588362..00e7d7fa0 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -1,14 +1,17 @@
[run]
concurrency = multiprocessing
-source = buildstream
+include =
+ */buildstream/*
+
omit =
# Omit profiling helper module
- buildstream/_profile.py
-
- # Omit stuff from the system which might accidentally creep in
- /usr/*
- /home/*
- /root/*
+ */buildstream/_profile.py
[report]
show_missing = True
+
+[paths]
+source =
+ buildstream/
+ */site-packages/buildstream/
+ */buildstream/buildstream/