those changes were not supposed to go in

This commit is contained in:
Maciej Fijalkowski 2020-08-13 11:44:07 +02:00
parent 909c6484af
commit e0dcd0ec3e

View File

@ -11,9 +11,8 @@ cd "../.."
# Since both of the next calls are expected to exit non-0, relax our guard. # Since both of the next calls are expected to exit non-0, relax our guard.
set +e set +e
SUBUNITREPORTER_OUTPUT_PATH="$base/results" trial --reporter=subunitv2-file allmydata trial --reporter=subunitv2-file allmydata
subunit2junitxml < "$base/results" > "$base/results.xml" subunit2junitxml < "${SUBUNITREPORTER_OUTPUT_PATH}" > "$base/results.xml"
subunit2pyunit < "$base/results"
set -e set -e
# Okay, now we're clear. # Okay, now we're clear.