Explicily lock turbo_tests to 2.2.0 in Gemfile

Ruby-core CI is having issues with turbo_tests 2.2.1. This version adds
json as a dependency and the `bundle install` command ruby-core uses is
not able to compile it for some reason.

I was not able to reproduce the issue locally, so this needs more
investigation.

We're already locked to 2.2.0, but ruby-core does not use a
`Gemfile.lock` so we need to lock explicitly in the Gemfile for now.
This commit is contained in:
Nobuyoshi Nakada 2024-04-11 02:10:20 +09:00 committed by Hiroshi SHIBATA
parent bc652d7568
commit a80f646616
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -7,7 +7,7 @@ gem "rake", "~> 13.1"
gem "rb_sys"
gem "webrick", "~> 1.6"
gem "turbo_tests", "= 2.1.0"
gem "turbo_tests", "= 2.2.0"
gem "parallel_tests", "< 3.9.0"
gem "parallel", "~> 1.19"
gem "rspec-core", "~> 3.12"