summaryrefslogtreecommitdiff
path: root/.coveragerc
diff options
context:
space:
mode:
authorRonald Bradford <ronald.bradford@gmail.com>2015-10-05 13:32:44 -0400
committerRonald Bradford <ronald.bradford@gmail.com>2015-10-05 13:32:44 -0400
commit6c86efc1a39792cb08e18ff6bd5ca3af0c1739ed (patch)
tree0b46897c2d764913549217df0ce5793147a063b8 /.coveragerc
parent449062bf027eb7c2445ac01c3cf7eebd761b1fda (diff)
downloadpython-heatclient-6c86efc1a39792cb08e18ff6bd5ca3af0c1739ed.tar.gz
Add standard code coverage configuration file
Add the .coveragerc configuration consistent with other projects, specifically to define including branch = True and omit including tests in the coverage reports Change-Id: Icb1989e4828ac380acc9a395b241fdf592c7d022
Diffstat (limited to '.coveragerc')
-rw-r--r--.coveragerc8
1 files changed, 8 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc
new file mode 100644
index 0000000..4248611
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,8 @@
+[run]
+branch = True
+source = heatclient
+omit = heatclient/tests/*,heatclient/openstack/*
+
+[report]
+ignore_errors = True
+precision = 2