Skip to content

Commit

Permalink
Simplify test dependencies (#170)
Browse files Browse the repository at this point in the history
- Remove `minitest-ci` since it is not used by GitHub Actions
- Remove `minitest-reporters` in favor of `minitest-rg`, which is
simpler, is officially maintained by the minitest GitHub organization,
and doesn't patch minitest internals in ways that can break other
plugins
- Remove now unneeded `test/support` directory
  • Loading branch information
mattbrictson committed Dec 19, 2023
1 parent 248dbc1 commit 9e423a0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ source "https://rubygems.org"
gemspec

gem "minitest", "~> 5.11"
gem "minitest-ci", "~> 3.4"
gem "minitest-reporters", "~> 1.3"
gem "minitest-rg", "~> 5.3"
gem "rake", "~> 13.0"
gem "rubocop", "1.58.0"
gem "rubocop-minitest", "0.33.0"
Expand Down
2 changes: 0 additions & 2 deletions test/support/ci.rb

This file was deleted.

2 changes: 0 additions & 2 deletions test/support/reporters.rb

This file was deleted.

2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
require "tomo/testing"

require "minitest/autorun"
Dir[File.expand_path("support/**/*.rb", __dir__)].each { |rb| require(rb) }
require "minitest/rg"

0 comments on commit 9e423a0

Please sign in to comment.