Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-23 14:55:44 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-23 14:56:06 +0300
commitededa488f2c94d1d132d974476f38e668c44e4ee (patch)
tree1062ec0a3332ce845a7b8b93d5222fdbf9654374 /qa/qa.rb
parent2fe5d9327965cb18fe800a0c7bd3f83c44a70efb (diff)
Assert on pipeline jobs statuses in CI/CD QA tests
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 2766fc988a3..b1d13ec6ab9 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -109,6 +109,11 @@ module QA
autoload :DeployKeys, 'qa/page/project/settings/deploy_keys'
autoload :Runners, 'qa/page/project/settings/runners'
end
+
+ module Pipeline
+ autoload :Index, 'qa/page/project/pipeline/index'
+ autoload :Show, 'qa/page/project/pipeline/show'
+ end
end
module Admin