Adding SONAR coverage report support 27/33727/3
authorSastry Isukapalli <sastry@research.att.com>
Fri, 2 Mar 2018 05:10:29 +0000 (00:10 -0500)
committerDileep Ranganathan <dileep.ranganathan@intel.com>
Wed, 7 Mar 2018 13:04:45 +0000 (05:04 -0800)
Issue-ID: OPTFRA-102
Change-Id: I67552599ff49dff29f99578b83592dd8d2ced193
Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
.coveragerc [new file with mode: 0644]
pom.xml
tox.ini

diff --git a/.coveragerc b/.coveragerc
new file mode 100644 (file)
index 0000000..a5afd52
--- /dev/null
@@ -0,0 +1,25 @@
+# .coveragerc to control coverage.py
+[run]
+branch = True
+cover_pylib = False
+include = osdf/**/*.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
diff --git a/pom.xml b/pom.xml
index 3936f39..982ca96 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
     <groupId>org.onap.optf.osdf</groupId>
     <artifactId>optf-osdf</artifactId>
-
     <name>optf-osdf</name>
     <version>1.1.0-SNAPSHOT</version>
     <description>Optimization Service Design Framework</description>
 
+    <properties>
+      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+      <sonar.sources>.</sonar.sources>
+      <sonar.junit.reportsPath>xunit-results.xml</sonar.junit.reportsPath>
+      <sonar.python.coverage.reportPath>coverage.xml</sonar.python.coverage.reportPath>
+      <sonar.language>py</sonar.language>
+      <sonar.pluginname>python</sonar.pluginname>
+      <sonar.inclusions>**/**.py</sonar.inclusions>
+    </properties>
+
     <build>
         <plugins>
+            <plugin>
+                <artifactId>exec-maven-plugin</artifactId>
+                <groupId>org.codehaus.mojo</groupId>
+            </plugin>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
diff --git a/tox.ini b/tox.ini
index 309296d..681ec2e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -6,10 +6,9 @@ envlist = py3
 [testenv]
 distribute = False
 commands =
-    coverage run --module pytest 
-    coverage report --omit=".tox/py3/*","test/*"
+    coverage run --module pytest --junitxml xunit-results.xml
+    coverage xml --omit=".tox/py3/*","test/*"
     # TODO: need to update the above "omit" when we package osdf as pip-installable
-    # coverage html --omit=.tox/py3/* -d htmlcov
 deps = -r{toxinidir}/requirements.txt 
     -r{toxinidir}/test/test-requirements.txt