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