Skip to content

Commit

Permalink
Merge pull request #229 from tansengming/fix-specs
Browse files Browse the repository at this point in the history
removes testing for ruby 2.5.9
  • Loading branch information
tansengming authored Mar 21, 2024
2 parents 1f11f02 + c3eadcf commit 1c3ac3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
ruby: [2.5.9, 2.6.10, 2.7.7]
ruby: [2.7.7]
gemfile: [Gemfile, gemfiles/rails60.gemfile, gemfiles/rails52.gemfile, gemfiles/rails51.gemfile]
steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ group :test do
gem 'webmock'
# System tests
gem 'capybara'
gem 'puma', '< 6' # https://github.com/teamcapybara/capybara/issues/2598
gem 'puma'
gem 'selenium-webdriver'
gem 'webdrivers'
end
2 changes: 1 addition & 1 deletion test/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
require 'minitest/autorun'

require 'webmock/minitest'
WebMock.disable_net_connect! allow_localhost: true, allow: ['codeclimate.com', 'chromedriver.storage.googleapis.com']
WebMock.disable_net_connect! allow_localhost: true, allow: ['codeclimate.com', 'chromedriver.storage.googleapis.com', 'googlechromelabs.github.io', 'storage.googleapis.com']

# Chrome Setup
require 'selenium-webdriver'
Expand Down

0 comments on commit 1c3ac3a

Please sign in to comment.