diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index d16842061..d9d7a62ed 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -158,7 +158,7 @@ jobs: RAILS_SILENCE_DEPRECATIONS: true run: | mkdir /tmp/test-results - bundle exec rspec --backtrace --format RSpec::Github::Formatter --format RspecJunitFormatter --out /tmp/test-results/rspec.xml + bundle exec rspec --backtrace --format RspecJunitFormatter --out /tmp/test-results/rspec.xml - name: Publish RSpec report uses: mikepenz/action-junit-report@v3 diff --git a/Gemfile b/Gemfile index 7f8d085f7..1837b3160 100644 --- a/Gemfile +++ b/Gemfile @@ -165,7 +165,6 @@ group :development, :test do gem 'hyrax-spec', '~> 0.3.2' gem 'rails-controller-testing', '~> 1.0.5' gem 'rspec', '~> 3.10' - gem "rspec-github", "~> 2.4", require: false gem 'rspec-its', '~> 1.1' gem 'rspec_junit_formatter', '~> 0.4.1' gem 'rspec-rails', '~> 5.1' diff --git a/Gemfile.lock b/Gemfile.lock index bfc29f1d6..ee471dcfe 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -873,8 +873,6 @@ GEM rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-github (2.4.0) - rspec-core (~> 3.0) rspec-its (1.3.0) rspec-core (>= 3.0.0) rspec-expectations (>= 3.0.0) @@ -1133,7 +1131,6 @@ DEPENDENCIES redlock (>= 0.1.2, < 2.0) rsolr (~> 2.5.0) rspec (~> 3.10) - rspec-github (~> 2.4) rspec-its (~> 1.1) rspec-rails (~> 5.1) rspec_junit_formatter (~> 0.4.1) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index eeaefe6c0..d39a498e8 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -66,11 +66,6 @@ ActiveRecord::Migration.maintain_test_schema! RSpec.configure do |config| - if ENV['CI'] - require 'rspec/github' - config.add_formatter RSpec::Github::Formatter - end - if ENV['RAILS_SILENCE_DEPRECATIONS'] Deprecation.default_deprecation_behavior = :silence ActiveSupport::Deprecation.silenced = true