diff options
author | Sastry Isukapalli <sastry@research.att.com> | 2018-03-02 00:10:29 -0500 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-07 05:04:45 -0800 |
commit | b8bad9d2cc5168e55271929a6474184129f31ef2 (patch) | |
tree | 175c08e4c88ce758c600a16ce3f5ad75629b60b4 | |
parent | aa358e298d345da0582ad1ea3b496bb44650a4f1 (diff) |
Adding SONAR coverage report support
Issue-ID: OPTFRA-102
Change-Id: I67552599ff49dff29f99578b83592dd8d2ced193
Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
-rw-r--r-- | .coveragerc | 25 | ||||
-rw-r--r-- | pom.xml | 15 | ||||
-rw-r--r-- | tox.ini | 5 |
3 files changed, 41 insertions, 4 deletions
diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..a5afd52 --- /dev/null +++ b/.coveragerc @@ -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 @@ -28,14 +28,27 @@ <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> <appendAssemblyId>false</appendAssemblyId> @@ -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 |