aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.coveragerc29
-rw-r--r--.gitignore4
-rw-r--r--pom.xml2
-rw-r--r--tox.ini4
4 files changed, 37 insertions, 2 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/.gitignore b/.gitignore
index e346599..8010eea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -88,3 +88,7 @@ ENV/
# Rope project settings
.ropeproject
+
+# Test report
+xunit-reports
+coverage-reports \ No newline at end of file
diff --git a/pom.xml b/pom.xml
index c4b40ca..1cbd160 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
<!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo -->
<groupId>org.onap.dcaegen2.platform</groupId>
<artifactId>configbinding</artifactId>
- <name>config-binding</name>
+ <name>dcaegen2-platform-configbinding</name>
<version>1.0.0-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
diff --git a/tox.ini b/tox.ini
index da487f2..cce1b63 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 {envsitepackagesdir} --cov-report=xml \ No newline at end of file