Skip to content

Commit

Permalink
Simplify test dependencies (#413)
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 authored Nov 22, 2023
1 parent edbf466 commit d3232d2
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 12 deletions.
3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ gemspec

gem "concurrent-ruby", "~> 1.1"
gem "minitest", "~> 5.11"
gem "minitest-ci", "~> 3.4"
gem "minitest-reporters", "~> 1.3"
gem "minitest-rg"
gem "rake", "~> 13.0"
gem "rubocop", "1.57.2"
gem "rubocop-md", "1.2.1"
Expand Down
2 changes: 0 additions & 2 deletions test/support/ci.rb

This file was deleted.

7 changes: 0 additions & 7 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 @@ -2,4 +2,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 d3232d2

Please sign in to comment.