try to make subunit2 processing allowed-to-fail too

This commit is contained in:
Jean-Paul Calderone 2019-06-25 15:20:55 -04:00
parent 67d76a0cc5
commit a6b4bf55ba

View File

@ -72,5 +72,5 @@ ${BOOTSTRAP_VENV}/bin/tox \
if [ -n "${ARTIFACTS}" ]; then
# Create a junitxml results area.
mkdir -p "$(dirname "${JUNITXML}")"
${BOOTSTRAP_VENV}/bin/subunit2junitxml < "${SUBUNIT2}" > "${JUNITXML}"
${BOOTSTRAP_VENV}/bin/subunit2junitxml < "${SUBUNIT2}" > "${JUNITXML}" || "${alternative}"
fi