summaryrefslogtreecommitdiffstats
path: root/newton
diff options
context:
space:
mode:
Diffstat (limited to 'newton')
-rw-r--r--newton/pom.xml7
-rw-r--r--newton/tox.ini1
2 files changed, 8 insertions, 0 deletions
diff --git a/newton/pom.xml b/newton/pom.xml
index 478d0c94..af99be78 100644
--- a/newton/pom.xml
+++ b/newton/pom.xml
@@ -36,6 +36,13 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <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>
+ <sonar.exclusions>tests/*,setup.py</sonar.exclusions>
</properties>
<build>
<plugins>
diff --git a/newton/tox.ini b/newton/tox.ini
index 26a902c2..919ad18f 100644
--- a/newton/tox.ini
+++ b/newton/tox.ini
@@ -17,3 +17,4 @@ commands =
commands =
coverage html --omit=".tox/*,*tests*,*__init__.py"
coverage report --omit=".tox/*,*tests*,*__init__.py" --fail-under=30
+ coverage xml -i