diff options
Diffstat (limited to 'conductor/tools/pretty_tox.sh')
-rwxr-xr-x | conductor/tools/pretty_tox.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |