Skip to content

Commit

Permalink
Merge pull request #5 from inspec/bundler_deprecated_warning
Browse files Browse the repository at this point in the history
Replace deprecated --without flag with bundle config
  • Loading branch information
tduffield authored Sep 3, 2021
2 parents afbf7df + ab49bf8 commit 90e9850
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
steps:
- label: run-lint-and-specs-ruby-2.5
command:
- bundle install --jobs=7 --retry=3 --without docs development
- bundle config set --local without docs development
- bundle install --jobs=7 --retry=3
- export USER="root"
- bundle exec rake
expeditor:
Expand All @@ -12,7 +13,8 @@ steps:
- label: run-lint-and-specs-ruby-2.6
command:
- export USER="root"
- bundle install --jobs=7 --retry=3 --without docs development
- bundle config set --local without docs development
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ group :test do
gem "chefstyle", "0.13.0"
gem "minitest", "~> 5.5"
gem "rake", ">= 10"
gem "chef-utils", "~> 16.6.14"
end

0 comments on commit 90e9850

Please sign in to comment.