diff options
author | danielsdeleo <dan@getchef.com> | 2015-05-18 16:36:17 -0700 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2015-05-20 15:13:57 -0700 |
commit | c3eb30d12d8afa60e8b720825bc6ce8708b5b05a (patch) | |
tree | 615ec7a4fc1ef58c9532a4984a56f55498533a33 /tasks/rspec.rb | |
parent | 68d6b10124b96012594d0a4fbe099eda738111b3 (diff) | |
download | chef-c3eb30d12d8afa60e8b720825bc6ce8708b5b05a.tar.gz |
Bundle install chef-config before running tests
Diffstat (limited to 'tasks/rspec.rb')
-rw-r--r-- | tasks/rspec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb index 18af440e81..4d74fa0951 100644 --- a/tasks/rspec.rb +++ b/tasks/rspec.rb @@ -30,6 +30,7 @@ begin task :component_specs do Dir.chdir("chef-config") do Bundler.with_clean_env do + sh("bundle install") sh("bundle exec rake spec") end end |