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 /tox.ini | |
parent | aa358e298d345da0582ad1ea3b496bb44650a4f1 (diff) |
Adding SONAR coverage report support
Issue-ID: OPTFRA-102
Change-Id: I67552599ff49dff29f99578b83592dd8d2ced193
Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |