diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-09 00:08:59 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-11-09 00:08:59 +0000 |
commit | 66204abcf29a1c159c5f49a24ddff2b5d8551596 (patch) | |
tree | 4c9540d38f94f130c6b424dd79e91d6b79f14ac5 /qa/bin | |
parent | db53c7d425247ecb27a0f7de588ad1dc8a510d79 (diff) | |
download | gitlab-ce-66204abcf29a1c159c5f49a24ddff2b5d8551596.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa/bin')
-rwxr-xr-x | qa/bin/qa | 16 |
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) |