Tox: Move logs to archive also on -1
[csit.git] / resources / libraries / bash / entry / tox.sh
index 9edd660..22dfdfe 100755 (executable)
@@ -29,11 +29,12 @@ source "${BASH_FUNCTION_DIR}/common.sh" || {
 common_dirs || die
 cd "${CSIT_DIR}" || die
 activate_virtualenv "${CSIT_DIR}" "${CSIT_DIR}/tox-requirements.txt" || die
 common_dirs || die
 cd "${CSIT_DIR}" || die
 activate_virtualenv "${CSIT_DIR}" "${CSIT_DIR}/tox-requirements.txt" || die
+set +e
 # Verbosity is increased so console output shows any unwanted downloads.
 # Verbosity is increased so console output shows any unwanted downloads.
-tox -vv  # Return code is turned into Jenkins job vote.
+tox -vv
 TOX_EXIT_STATUS="$?"
 TOX_EXIT_STATUS="$?"
-
+set -e
 mkdir -p "${CSIT_DIR}/archives" || die
 mv *.log "${CSIT_DIR}/archives" || die
 
 mkdir -p "${CSIT_DIR}/archives" || die
 mv *.log "${CSIT_DIR}/archives" || die
 
-exit "${TOX_EXIT_STATUS}"
\ No newline at end of file
+exit "${TOX_EXIT_STATUS}"