diff options
Diffstat (limited to 'scripts/rspec_helpers.sh')
-rw-r--r-- | scripts/rspec_helpers.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rspec_helpers.sh b/scripts/rspec_helpers.sh index 2aec8a67734..7ac6b98938f 100644 --- a/scripts/rspec_helpers.sh +++ b/scripts/rspec_helpers.sh @@ -196,8 +196,8 @@ function rspec_rerun_previous_failed_tests() { local test_file_count=$(wc -w "${matching_tests_file}" | awk {'print $1'}) if [[ "${test_file_count}" -gt "${test_file_count_threshold}" ]]; then - echo "This job is intentionally failed because there are more than ${test_file_count_threshold} test files to rerun." - exit 1 + echo "This job is intentionally exited because there are more than ${test_file_count_threshold} test files to rerun." + exit 0 fi if [[ -n $test_files ]]; then |