aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2017-09-12 20:36:25 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-12 20:36:25 +0000
commit43d529e6da24f4da981161f72df9a5d086d3ff3e (patch)
treefcb406199eb39ffe6251803b6e69c788a16816f8
parent596006433d73af57ab3d544ee30a1caf1429740d (diff)
parenta82cff95c9a3a744ce8a18e26daa9f4095edd197 (diff)
Merge "support test coverage in sonar report"
-rw-r--r--.coveragerc29
-rw-r--r--tox.ini4
2 files changed, 32 insertions, 1 deletions
diff --git a/.coveragerc b/.coveragerc
new file mode 100644
index 0000000..fdedea1
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,29 @@
+# .coveragerc to control coverage.py
+[run]
+branch = True
+cover_pylib = False
+include = */config_binding_service/*.py
+
+[report]
+# Regexes for lines to exclude from consideration
+exclude_lines =
+ # Have to re-enable the standard pragma
+ pragma: no cover
+
+ # Don't complain about missing debug-only code:
+ def __repr__
+ if self\.debug
+
+ # Don't complain if tests don't hit defensive assertion code:
+ raise AssertionError
+ raise NotImplementedError
+
+ # Don't complain if non-runnable code isn't run:
+ if 0:
+ if __name__ == .__main__.:
+
+ignore_errors = True
+
+[xml]
+output = coverage-reports/coverage-configbinding.xml
+
diff --git a/tox.ini b/tox.ini
index da487f2..116e6e9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,9 +6,11 @@ deps=
Flask
connexion
pytest
+ coverage
+ pytest-cov
requests
six
setenv =
CONSUL_HOST = 8.8.8.8
HOSTNAME = config_binding_service
-commands=pytest
+commands=pytest --junitxml xunit-reports/xunit-result-configbinding.xml --cov .tox/py35/lib/python3.5/site-packages/ --cov-report=xml \ No newline at end of file