Commit fa883dba authored by Mark Lapierre's avatar Mark Lapierre

Merge branch 'ml-display-bin-qa-run-info' into 'master'

Display message if QA bin/qa is run without scenario

See merge request gitlab-org/gitlab!47014
parents b4f9e18e deeabccb
......@@ -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)
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