Skip to content

Commit

Permalink
Remove bundler install during Appveyor tests (#217)
Browse files Browse the repository at this point in the history
It appears that the Appveyor images changed recently and the Ruby
installs for all version (2.2, 2.3, and 2.4) already include Bundler
installed. Attempting to install it will hang the tests at an
interactive prompt asking if you want to override the install, and
--force'ing the install causes path issues and Rubygems won't be able
to activate the gem.

Removing the bundler install appears to solve the problem nicely.

Signed-off-by: Adam Leff <[email protected]>
  • Loading branch information
adamleff authored and chris-rock committed Nov 20, 2017
1 parent 3ed2adb commit f2c0ab9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ platform:
environment:
winrm_user: test_user
winrm_pass: Pass@word1
bundler_url: https://rubygems.org/downloads/bundler-1.9.9.gem

matrix:
- ruby_version: "22"
Expand Down Expand Up @@ -40,8 +39,6 @@ install:
- ps: Write-Host $env:PATH
- ruby --version
- gem --version
- appveyor DownloadFile -Url %bundler_url% -FileName bundler.gem
- gem install --local bundler --quiet --no-document
- bundler --version
- ruby -r rubygems -e "p Gem.path"

Expand Down

0 comments on commit f2c0ab9

Please sign in to comment.