X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-run.sh;h=91e040ada37380420b2d9d4cd8a31b1f25ddf552;hb=a86978478e005c9ab1ad7fbf24712288f7e6db65;hp=af3ac7a1bbfa42bc06382f76388e08b759fa12e0;hpb=d738640e1a59840d85430fcf1b925795f0e4c6bd;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-run.sh b/shell/tox-run.sh index af3ac7a1..91e040ad 100644 --- a/shell/tox-run.sh +++ b/shell/tox-run.sh @@ -28,7 +28,7 @@ if [[ -d /opt/pyenv ]]; then fi PARALLEL="${PARALLEL:-true}" -if [[ ${PARALLEL} = true ]]; then +if [[ ${PARALLEL,,} = true ]]; then if [[ -n ${TOX_ENVS:-} ]]; then tox -e "$TOX_ENVS" --parallel auto --parallel-live | tee -a "$ARCHIVE_TOX_DIR/tox.log" tox_status="${PIPESTATUS[0]}" @@ -52,7 +52,11 @@ echo "---> Completed tox runs" # shellcheck disable=SC2116 for i in .tox/*/log; do tox_env=$(echo "$i" | awk -F'/' '{print $2}') - cp -r "$i" "$ARCHIVE_TOX_DIR/$tox_env" + # defend against glob finding no matches + if ! cp -r "$i" "$ARCHIVE_TOX_DIR/$tox_env"; then + echo "WARN: no logs found to archive" + break + fi done # If docs are generated push them to archives.