9 lines
168 B
Ruby
Executable file
9 lines
168 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require_relative '../qa'
|
|
|
|
ARGV.unshift('Test::Instance::All', ENV['GITLAB_URL'], '--')
|
|
|
|
QA::Scenario
|
|
.const_get(ARGV.shift)
|
|
.launch!(ARGV)
|