diff options
author | John Keiser <john@johnkeiser.com> | 2016-04-18 09:53:42 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2016-04-18 14:21:02 -0700 |
commit | 4225c2b182d093e38347b2a37834336ce09c3e39 (patch) | |
tree | eb567eba630e9695af106d5ccd21bdb3bf5e1362 /ci/verify-chef.sh | |
parent | d43cdf151a20924d4157f67759072799ac79cbb1 (diff) | |
download | chef-4225c2b182d093e38347b2a37834336ce09c3e39.tar.gz |
Just use the actual installed bundle instead of reusing the Gemfile to run Chef tess
Diffstat (limited to 'ci/verify-chef.sh')
-rwxr-xr-x | ci/verify-chef.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh index 70b62d06da..8118d2da33 100755 --- a/ci/verify-chef.sh +++ b/ci/verify-chef.sh @@ -125,5 +125,5 @@ else export CHEF_FIPS fi - sudo env BUNDLE_IGNORE_CONFIG=true BUNDLE_FROZEN=1 BUNDLE_WITHOUT=development:guard:maintenance:tools:integration:changelog:compat_testing:docgen:travis GIT_SSL_NO_VERIFY=true PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional + sudo env BUNDLE_GEMFILE=/opt/$PROJECT_NAME/Gemfile BUNDLE_IGNORE_CONFIG=true BUNDLE_FROZEN=1 GIT_SSL_NO_VERIFY=true PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional fi |