summaryrefslogtreecommitdiff
path: root/ci/jenkins_run_tests.sh
blob: 5dab6ebd923ee88dde4b9d9322ae5db97d72bc5d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

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 --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;