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/bin
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-11-09 03:08:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-09 03:08:59 +0300
commit66204abcf29a1c159c5f49a24ddff2b5d8551596 (patch)
tree4c9540d38f94f130c6b424dd79e91d6b79f14ac5 /qa/bin
parentdb53c7d425247ecb27a0f7de588ad1dc8a510d79 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa/bin')
-rwxr-xr-xqa/bin/qa16
1 files changed, 15 insertions, 1 deletions
diff --git a/qa/bin/qa b/qa/bin/qa
index 6a772e93cee..cbaad4bd7ad 100755
--- a/qa/bin/qa
+++ b/qa/bin/qa
@@ -2,6 +2,20 @@
require_relative '../qa'
+scenario = ARGV.shift
+
+if scenario.to_s.empty?
+ puts <<~INFO
+ For instructions on how to run tests, please see https://gitlab.com/gitlab-org/gitlab/-/blob/master/qa/README.md
+
+ If you are using gitlab-qa, please see https://gitlab.com/gitlab-org/gitlab-qa/-/blob/master/docs/what_tests_can_be_run.md
+
+ If you see this message after starting a docker container and you intended to launch an omnibus-gitlab instance, try removing `-qa` from the image name.
+ INFO
+
+ exit
+end
+
QA::Scenario
- .const_get(ARGV.shift)
+ .const_get(scenario)
.launch!(ARGV)