mirror of https://github.com/rails/rails
Lock minitest for now
CI runs bundle update so minitest got updated and my PR started failing
due to this change 6e06ac9d3e
I will relax the minitest requirement once the failing specs can be
fixed, but I don't want that to block this. It wasn't immediately
obvious to me what needs to change in our tests to get them passing.
There is also an open issue here
https://github.com/minitest/minitest/issues/912 regarding this change.
This commit is contained in:
parent
06c116fe1a
commit
7f93661551
2
Gemfile
2
Gemfile
|
@ -6,7 +6,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|||
|
||||
gemspec
|
||||
|
||||
gem "minitest", ">= 5.15.0"
|
||||
gem "minitest", ">= 5.15.0", "< 5.16.0"
|
||||
|
||||
# We need a newish Rake since Active Job sets its test tasks' descriptions.
|
||||
gem "rake", ">= 11.1"
|
||||
|
|
|
@ -586,7 +586,7 @@ DEPENDENCIES
|
|||
kindlerb (~> 1.2.0)
|
||||
libxml-ruby
|
||||
listen (~> 3.3)
|
||||
minitest (>= 5.15.0)
|
||||
minitest (>= 5.15.0, < 5.16.0)
|
||||
minitest-bisect
|
||||
minitest-ci
|
||||
minitest-retry
|
||||
|
|
Loading…
Reference in New Issue