Commit 8a8f3fd9 authored by Tomislav Nikic's avatar Tomislav Nikic

Quarantine MR because https://gitlab.com/gitlab-org/gitlab/issues/208761

Need to quarantine a few tests because of a bug documented in
https://gitlab.com/gitlab-org/gitlab/issues/208761
parent 36029973
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module QA module QA
context 'Release' do context 'Release' do
describe 'Deploy key creation' do describe 'Deploy key creation' do
it 'user adds a deploy key' do it 'user adds a deploy key', quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/208761' do
Flow::Login.sign_in Flow::Login.sign_in
key = Runtime::Key::RSA.new key = Runtime::Key::RSA.new
......
...@@ -35,7 +35,7 @@ module QA ...@@ -35,7 +35,7 @@ module QA
] ]
keys.each do |(key_class, bits)| keys.each do |(key_class, bits)|
it "user sets up a deploy key with #{key_class}(#{bits}) to clone code using pipelines" do it "user sets up a deploy key with #{key_class}(#{bits}) to clone code using pipelines", quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/208761' do
key = key_class.new(*bits) key = key_class.new(*bits)
Resource::DeployKey.fabricate_via_browser_ui! do |resource| Resource::DeployKey.fabricate_via_browser_ui! do |resource|
......
...@@ -48,7 +48,7 @@ module QA ...@@ -48,7 +48,7 @@ module QA
it_behaves_like 'project audit event logs', ["Add user access as guest"] it_behaves_like 'project audit event logs', ["Add user access as guest"]
end end
context "Add deploy key" do context "Add deploy key", quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/208761' do
before do before do
key = Runtime::Key::RSA.new key = Runtime::Key::RSA.new
deploy_key_title = 'deploy key title' deploy_key_title = 'deploy key title'
......
...@@ -24,7 +24,7 @@ module QA ...@@ -24,7 +24,7 @@ module QA
target_project.visit! target_project.visit!
end end
it 'configures and syncs a (pull) mirrored repository' do it 'configures and syncs a (pull) mirrored repository', quarantine: 'https://gitlab.com/gitlab-org/gitlab/issues/208761' do
# Configure the target project to pull from the source project # Configure the target project to pull from the source project
# And get the public key to be used as a deploy key # And get the public key to be used as a deploy key
Page::Project::Menu.perform(&:go_to_repository_settings) Page::Project::Menu.perform(&:go_to_repository_settings)
......
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