Commit aea7d639 authored by Dan Davison's avatar Dan Davison Committed by Walmyr Lima e Silva Filho

Add type:bug in quarantined tests

For each test that is quarantined due to
BUG_IN_CODE we will specify a hash and
specify type bug
parent f601aa4d
# frozen_string_literal: true # frozen_string_literal: true
module QA module QA
# BUG_IN_CODE context 'Manage', :github, quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/26952', type: :bug } do
context 'Manage', :github, quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/26952' do
describe 'Project import from GitHub' do describe 'Project import from GitHub' do
let(:imported_project) do let(:imported_project) do
Resource::ProjectImportedFromGithub.fabricate! do |project| Resource::ProjectImportedFromGithub.fabricate! do |project|
......
# frozen_string_literal: true # frozen_string_literal: true
module QA module QA
# BUG_IN_CODE context 'Create', quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/36817', type: :bug } do
context 'Create', quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/36817' do
describe 'Merge request rebasing' do describe 'Merge request rebasing' do
it 'user rebases source branch of merge request' do it 'user rebases source branch of merge request' do
Flow::Login.sign_in Flow::Login.sign_in
......
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
module QA module QA
# Git protocol v2 is temporarily disabled # Git protocol v2 is temporarily disabled
# BUG_IN_CODE context 'Create', quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/27828', type: :bug } do
context 'Create', quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/27828' do
describe 'Push over HTTP using Git protocol version 2', :requires_git_protocol_v2 do describe 'Push over HTTP using Git protocol version 2', :requires_git_protocol_v2 do
it 'user pushes to the repository' do it 'user pushes to the repository' do
Flow::Login.sign_in Flow::Login.sign_in
......
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
module QA module QA
# Git protocol v2 is temporarily disabled # Git protocol v2 is temporarily disabled
# BUG_IN_CODE context 'Create', quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/27828', type: :bug } do
context 'Create', quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/27828' do
describe 'Push over SSH using Git protocol version 2', :requires_git_protocol_v2 do describe 'Push over SSH using Git protocol version 2', :requires_git_protocol_v2 do
# Note: If you run this test against GDK make sure you've enabled sshd and # Note: If you run this test against GDK make sure you've enabled sshd and
# enabled setting the Git protocol by adding `AcceptEnv GIT_PROTOCOL` to # enabled setting the Git protocol by adding `AcceptEnv GIT_PROTOCOL` to
......
...@@ -64,8 +64,7 @@ module QA ...@@ -64,8 +64,7 @@ module QA
end end
end end
# BUG_IN_CODE context 'instance level', :requires_admin, quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/36815', type: :bug } do
context 'instance level', :requires_admin, quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/36815' do
before do before do
Flow::Login.sign_in_as_admin Flow::Login.sign_in_as_admin
......
...@@ -6,7 +6,6 @@ module QA ...@@ -6,7 +6,6 @@ module QA
# It's now skipped because another bug breaks the projects list and # It's now skipped because another bug breaks the projects list and
# causes subsequent tests to fail # causes subsequent tests to fail
# See https://gitlab.com/gitlab-org/gitlab/issues/197130 # See https://gitlab.com/gitlab-org/gitlab/issues/197130
# BUG_IN_CODE
context 'Create', :skip do context 'Create', :skip do
describe 'Web IDE web terminal', :docker do describe 'Web IDE web terminal', :docker do
before do before do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment