From 19886139a2bd3026213583e0004474dd4c5bfb7d Mon Sep 17 00:00:00 2001 From: gdk Date: Fri, 3 May 2024 03:11:28 +0000 Subject: [PATCH] Quarantine a flaky test The `API::Helpers::IntegrationsHelpers.integration_classes returns correct integrations` test has the `flakiness::1` label set, which means it has more than 1000 flakiness reports. 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 to improve the test - close the merge request in favor of another merge request to delete the test Related to https://gitlab.com/gitlab-org/gitlab/-/issues/444979. This change was generated by [gitlab-housekeeper](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-housekeeper) using the Keeps::QuarantineFlakyTests keep. To provide feedback on your experience with `gitlab-housekeeper` please comment in . Changelog: other --- spec/lib/api/helpers/integrations_helpers_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/lib/api/helpers/integrations_helpers_spec.rb b/spec/lib/api/helpers/integrations_helpers_spec.rb index c8e749db3565d3..3c6dc1b1d19579 100644 --- a/spec/lib/api/helpers/integrations_helpers_spec.rb +++ b/spec/lib/api/helpers/integrations_helpers_spec.rb @@ -30,7 +30,7 @@ end describe '.integration_classes' do - it 'returns correct integrations' do + it 'returns correct integrations', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444979' do expect(described_class.integration_classes) .to match_array(Integration.descendants.without(base_classes, development_classes, instance_level_classes)) end -- GitLab