From fe69ea303a5b0b3b067a7ca8ee65e9e7df827741 Mon Sep 17 00:00:00 2001 From: Auto-quarantining bot Date: Tue, 16 Dec 2025 03:18:38 +0000 Subject: [PATCH] Quarantine a flaky test The `` Net::Http patch HTTPInformation monkey patch with HTTP requests raises InvalidResponseError when server returns 100 Continue `` test matches one of the following conditions: 1. has either ~"flakiness::1" or ~"flakiness::2" label set, which means the number of reported failures is at or above 95 percentile, indicating unusually high failure count. 2. has ~"severity::1" label set, which means the number of reported failures [spiked and exceeded its daily threshold](https://gitlab.com/gitlab-org/ruby/gems/gitlab_quality-test_tooling/-/blob/c9bc10536b1f8d2d4a03c3e0b6099a40fe67ad26/lib/gitlab_quality/test_tooling/report/concerns/issue_reports.rb#L51). This MR quarantines the test. This is a discussion starting point to let the responsible group know about the flakiness so that they can take action: - accept the merge request and schedule the associated issue to improve the test - close the merge request in favor of another merge request to delete the test Please follow the [Flaky tests management process](https://handbook.gitlab.com/handbook/engineering/testing/flaky-tests/#flaky-tests-management-process) to help us increase `master` stability. Please let us know your feedback in the [Engineering Productivity issue tracker](https://gitlab.com/gitlab-org/quality/engineering-productivity/team/-/issues). Related to https://gitlab.com/gitlab-org/quality/test-failure-issues/-/issues/16437. This change was generated by [gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper) in [CI](https://gitlab.com/gitlab-org/quality/engineering-productivity/team/-/jobs/12448121449) using the `Keeps::QuarantineFlakyTests` keep. To provide feedback on your experience with `gitlab-housekeeper` please create an issue with the label ~"GitLab Housekeeper" and consider pinging the author of this keep. Changelog: other --- spec/initializers/net_http_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/initializers/net_http_spec.rb b/spec/initializers/net_http_spec.rb index f19b83817f6766..8430db62d41a97 100644 --- a/spec/initializers/net_http_spec.rb +++ b/spec/initializers/net_http_spec.rb @@ -157,7 +157,8 @@ def wait_for_server(port, timeout: 5) end describe 'HTTPInformation monkey patch with HTTP requests' do - it 'raises InvalidResponseError when server returns 100 Continue' do + it 'raises InvalidResponseError when server returns 100 Continue', + quarantine: 'https://gitlab.com/gitlab-org/quality/test-failure-issues/-/issues/16437' do expect do Net::HTTP.get_response(URI("http://localhost:4567/continue")) end.to raise_error(Gitlab::HTTP::InvalidResponseError, 'Invalid server response: 1xx responses not supported') -- GitLab