From 9c91924abc6c43577883cb2a046b7f5d0c942a8b Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis <acunskis@gitlab.com> Date: Wed, 17 Jan 2024 10:03:13 +0000 Subject: [PATCH] Update quarantine condition for gdk spec --- .gitlab/ci/test-on-gdk/main.gitlab-ci.yml | 5 +++++ .../browser_ui/3_create/repository/protected_tags_spec.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/test-on-gdk/main.gitlab-ci.yml b/.gitlab/ci/test-on-gdk/main.gitlab-ci.yml index 5efe66d9b47a1..58f34b77d0ca6 100644 --- a/.gitlab/ci/test-on-gdk/main.gitlab-ci.yml +++ b/.gitlab/ci/test-on-gdk/main.gitlab-ci.yml @@ -206,6 +206,11 @@ gdk-qa-non-blocking: QA_RUN_TYPE: gdk-qa-non-blocking parallel: 5 allow_failure: true + artifacts: + paths: + - log + reports: + dotenv: "" rules: # run tests on master pipelines to collect metrics and move tests to `blocking` job until `non-blocking` job # is removed entirely diff --git a/qa/qa/specs/features/browser_ui/3_create/repository/protected_tags_spec.rb b/qa/qa/specs/features/browser_ui/3_create/repository/protected_tags_spec.rb index 206964cb9bfb7..c00dbf1b0b831 100644 --- a/qa/qa/specs/features/browser_ui/3_create/repository/protected_tags_spec.rb +++ b/qa/qa/specs/features/browser_ui/3_create/repository/protected_tags_spec.rb @@ -5,7 +5,7 @@ module QA describe 'Repository tags', :reliable, product_group: :source_code, quarantine: { type: :flaky, issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/438349", - only: { job: 'gdk-qa-reliable' } + only: { job: /gdk-qa-.*/ } } do let(:project) { create(:project, :with_readme, name: 'project-for-tags') } let(:developer_user) do -- GitLab