diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-09-08 15:07:30 -0400 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-09-08 20:36:40 -0400 |
commit | b02f347a2ef75503da607dcd5ab07f60c8a82b15 (patch) | |
tree | cc8941ac21bd4bce42e35d28c91b6731953bcc1f /.coveragerc | |
parent | 374c4e0ad3f418396414684775d58d0d0beea27e (diff) | |
download | buildstream-b02f347a2ef75503da607dcd5ab07f60c8a82b15.tar.gz |
.coveragerc: Configuring so that reports from different environments can be combined
Diffstat (limited to '.coveragerc')
-rw-r--r-- | .coveragerc | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/.coveragerc b/.coveragerc index b33588362..ec8cd78d6 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,14 +1,18 @@ [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 +precision = 2 + +[paths] +source = + buildstream/ + */site-packages/buildstream/ + */buildstream/buildstream/ |