diff options
Diffstat (limited to 'ci/jenkins_run_tests.sh')
-rwxr-xr-x | ci/jenkins_run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/jenkins_run_tests.sh b/ci/jenkins_run_tests.sh index ce8e1934c9..5dab6ebd92 100755 --- a/ci/jenkins_run_tests.sh +++ b/ci/jenkins_run_tests.sh @@ -5,5 +5,5 @@ export PATH=/usr/local/bin:$PATH ruby -v; # remove the Gemfile.lock and try again if bundler fails. # This should take care of Gemfile changes that result in "bad" bundles without forcing us to rebundle every time -bundle install --binstubs --path vendor/bundle || ( rm Gemfile.lock && bundle install --binstubs --path vendor/bundle ) -bin/rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec; +bundle install --path vendor/bundle || ( rm Gemfile.lock && bundle install --path vendor/bundle ) +bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec; |