We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83eecfb commit 7cd5da4Copy full SHA for 7cd5da4
1 file changed
tests/run_tests
@@ -44,6 +44,7 @@ unset VIRTUALENVWRAPPER_VIRTUALENV_ARGS
44
45
# Run the test scripts with a little formatting around them to make it
46
# easier to find where each script output starts.
47
+RC=0
48
for test_script in $scripts
49
do
50
@@ -66,9 +67,11 @@ do
66
67
echo
68
SHUNIT_PARENT="$test_script"
69
export SHUNIT_PARENT
- $SHELL $test_shell_opts $test_script || exit 1
70
+ if ! $SHELL $test_shell_opts $test_script; then
71
+ RC=1
72
+ fi
73
74
75
done
76
-exit 0
77
+exit $RC
0 commit comments