Skip to content

Commit

Permalink
Merge pull request #342 from sanger/develop
Browse files Browse the repository at this point in the history
Develop into master
  • Loading branch information
yoldas authored Aug 11, 2023
2 parents c7e761a + 8d0e99a commit 93b0d2b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
services:
mysql:
# Use the Mysql docker image https://hub.docker.com/_/mysql
image: mysql:5.7 # Using 5.7 to map to what is used in production.
image: mysql:8.0
ports:
- 3306:3306 # Default port mappings
# Monitor the health of the container to mesaure when it is ready
Expand Down
2 changes: 1 addition & 1 deletion .release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.0
3.7.0
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ group :test do
gem 'launchy'
gem 'rspec-collection_matchers'
gem 'rspec-rails', '~> 3.5.0'
gem 'selenium-webdriver', require: false
gem 'simplecov', require: false
gem 'timecop'
# Keep webdriver in sync with chrome to prevent frustrating CI failures
gem 'webdrivers', require: false
end
28 changes: 12 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -137,23 +137,23 @@ GEM
timeout
net-smtp (0.3.3)
net-protocol
nio4r (2.5.8)
nokogiri (1.14.2)
nio4r (2.5.9)
nokogiri (1.14.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
parallel (1.22.1)
parser (3.2.1.1)
parallel (1.23.0)
parser (3.2.2.1)
ast (~> 2.4.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
psych (4.0.4)
stringio
public_suffix (5.0.1)
puma (6.1.1)
puma (6.3.0)
nio4r (~> 2.0)
racc (1.6.2)
rack (2.2.6.3)
rack (2.2.6.4)
rack-mini-profiler (3.0.0)
rack (>= 1.2.0)
rack-test (2.0.2)
Expand Down Expand Up @@ -188,7 +188,7 @@ GEM
rake (13.0.6)
rdoc (6.4.0)
psych (>= 4.0.0)
regexp_parser (2.7.0)
regexp_parser (2.8.0)
rexml (3.2.5)
rspec-collection_matchers (1.2.0)
rspec-expectations (>= 2.99.0.beta1)
Expand All @@ -209,21 +209,21 @@ GEM
rspec-mocks (~> 3.5.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
rubocop (1.48.1)
rubocop (1.51.0)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.26.0, < 2.0)
rubocop-ast (>= 1.28.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.27.0)
rubocop-ast (1.28.1)
parser (>= 3.2.1.0)
rubocop-capybara (2.17.1)
rubocop (~> 1.41)
rubocop-performance (1.16.0)
rubocop-performance (1.18.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.18.0)
Expand Down Expand Up @@ -283,10 +283,6 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webdrivers (5.2.0)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0)
websocket (1.2.9)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
Expand Down Expand Up @@ -324,13 +320,13 @@ DEPENDENCIES
rubocop-rspec
sass-rails (~> 6.0)
sdoc (~> 2.4.0)
selenium-webdriver
simplecov
spring
timecop
turbolinks
uglifier (>= 1.3.0)
web-console (~> 4.0.4)
webdrivers

BUNDLED WITH
2.3.18
2 changes: 1 addition & 1 deletion spec/rails_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
require File.expand_path('../config/environment', __dir__)
require 'rspec/rails'
require 'spec_helper'
require 'webdrivers/chromedriver'

# Add additional requires below this line. Rails is not loaded until this point!

# Requires supporting ruby files with custom matchers and macros, etc, in
Expand Down
3 changes: 1 addition & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
#
# require 'database_cleaner'

require 'webdrivers/chromedriver'
Webdrivers::Chromedriver.update
require 'selenium-webdriver'

require 'factory_bot'
require 'capybara/rspec'
Expand Down

0 comments on commit 93b0d2b

Please sign in to comment.