diff --git a/bin/run_ci_tests.sh b/bin/run_ci_tests.sh index c17fbd7..bc0e2e7 100755 --- a/bin/run_ci_tests.sh +++ b/bin/run_ci_tests.sh @@ -27,14 +27,13 @@ install_repo() { run_tests() { echo "Running tests" pytest 2>&1 | tee "$TEST_LOG" + deactivate grep -e '^FAILED ' "$TEST_LOG" if [[ $? == 0 ]]; then - echo HERE FAIL return 2 # FAILURE fi - echo HERE PASS return 0 # PASSED } @@ -47,7 +46,6 @@ prepare_venv install_repo run_tests ret=$? -echo "RET: $ret" cleanup if [[ $ret == 0 ]]; then