From 338ae6819b2e09a362fecf6c867541a1b171c3c8 Mon Sep 17 00:00:00 2001 From: Dileep Ranganathan Date: Mon, 5 Mar 2018 15:35:18 -0800 Subject: Fix Sonar coverage report Added maven-exec plugin to trigger tox and coverage Modified sonar properties to set the path to reports Modified .gitignore to add coverage related files Added test dependency junitxml Change-Id: I7e4bb5e4b6bc217b9778350c703d864e9f8ef0e2 Issue-ID: OPTFRA-101 Signed-off-by: Dileep Ranganathan --- conductor/tools/pretty_tox.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'conductor/tools') diff --git a/conductor/tools/pretty_tox.sh b/conductor/tools/pretty_tox.sh index 190b39d..04c806e 100755 --- a/conductor/tools/pretty_tox.sh +++ b/conductor/tools/pretty_tox.sh @@ -29,7 +29,7 @@ TESTRARGS=$1 # # this work around exists until that is addressed if [[ "$TESTARGS" =~ "until-failure" ]]; then - python setup.py testr --slowest --testr-args="$TESTRARGS" + python setup.py testr --slowest --testr-args="$TESTRARGS" | subunit2junitxml --output-to=xunit-results.xml else - python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-trace -f + python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-1to2 | subunit2junitxml --forward --output-to=xunit-results.xml fi -- cgit 1.2.3-korg