We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8c4ee commit a93eb55Copy full SHA for a93eb55
1 file changed
script/cibuild
@@ -99,8 +99,15 @@ if [ "$RSPEC_TEST" = "true" ]; then
99
fi
100
101
# Run the tests
102
- echo "Running tests"
103
- time bundle exec rake test
+ echo "Running rspec unit tests"
+ time bundle exec rake spec:spec
104
+ exitcode=$?
105
+ if [ "$exitcode" -ne 0 ]; then RSPEC_EXITCODE="$exitcode"; fi
106
+ cat "$OUTPUT_FILE"
107
+ echo ""
108
+
109
+ echo "Running rspec integration tests"
110
+ time bundle exec rake spec:integration
111
exitcode=$?
112
if [ "$exitcode" -ne 0 ]; then RSPEC_EXITCODE="$exitcode"; fi
113
cat "$OUTPUT_FILE"
0 commit comments