X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-run.sh;h=97f8855b6aa97e52a3a0920673b676049ac9da2b;hb=333d661d90ff0291664d49ea5de5866a0ed8b94d;hp=ef2481d09150c01da30032f3ce28cdd5580457f9;hpb=d5dd1678d8da13ed05a68d566b9b7da13a4b04a9;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-run.sh b/shell/tox-run.sh index ef2481d0..97f8855b 100644 --- a/shell/tox-run.sh +++ b/shell/tox-run.sh @@ -14,11 +14,21 @@ echo "---> tox-run.sh" # DO NOT set -u as virtualenv's activate script has unbound variables set -e -o pipefail +ARCHIVE_TOX_DIR="$WORKSPACE/archives/tox" +mkdir -p "$ARCHIVE_TOX_DIR" + cd "$WORKSPACE/$TOX_DIR" -if [ -n "$TOX_ENVS" ]; -then - tox -e "$TOX_ENVS" +if [ ! -z "$TOX_ENVS" ]; then + detox -e "$TOX_ENVS" | tee -a "$ARCHIVE_TOX_DIR/detox.log" else - tox + detox | tee -a "$ARCHIVE_TOX_DIR/detox.log" fi + +# Disable SC2116 as we want to echo a space separated list of TOX_ENVS +# shellcheck disable=SC2116 +for i in $(echo "${TOX_ENVS//,/ }"); do + cp -r ".tox/$i/log" "$ARCHIVE_TOX_DIR/$i" +done + +echo "Completed tox runs."