From 045ed1b15b24b715f4efe36ba05c767770002769 Mon Sep 17 00:00:00 2001 From: David Tapiador Date: Mon, 13 Jul 2026 15:41:14 +0200 Subject: [PATCH] Pin simplecov to < 1.0.0 to fix test suite crash simplecov 1.0.0 (released 2026-07-12) removed the `running` method, which datadog-ci ~> 1.11 calls in its deprecated_total_coverage_metric module. This causes the test suite to exit with code 3 after all tests pass. Pin to < 1.0.0 until datadog-ci adds compatibility with simplecov 1.x. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e9fd9435cc2d..4dadfc00a2d8 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ group :development, :test do gem 'rspec-expectations' gem 'rubocop' gem 'rufo' - gem 'simplecov' + gem 'simplecov', '< 1.0.0' gem 'timecop' gem 'vcr' gem 'webmock'