diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-07 06:58:12 -0800 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-07 06:58:12 -0800 |
commit | 9eafc9d5c908debd9ff21aa378016144ec7f55a4 (patch) | |
tree | 29bef9be4e930a08b35f7a2989e27e7941b3f188 /conductor | |
parent | a29dff2ea59fa573ff4c1257e58f7813e17fdc40 (diff) |
Fix unreadable characters in tox tests
Added subunit-trace -f command which was missing
Change-Id: I9e1f4f3a3430349ceff3ef3bbe62119468399340
Issue-ID: OPTFRA-164
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Diffstat (limited to 'conductor')
-rwxr-xr-x | conductor/tools/pretty_tox.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conductor/tools/pretty_tox.sh b/conductor/tools/pretty_tox.sh index 04c806e..387e4d8 100755 --- a/conductor/tools/pretty_tox.sh +++ b/conductor/tools/pretty_tox.sh @@ -31,5 +31,5 @@ TESTRARGS=$1 if [[ "$TESTARGS" =~ "until-failure" ]]; then 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-1to2 | subunit2junitxml --forward --output-to=xunit-results.xml + python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | subunit-1to2 | subunit2junitxml --no-passthrough --forward --output-to=xunit-results.xml | subunit-trace -f fi |