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

rubymine « bin « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7db50f4aadec667926312adfe34f08b1e78da76b (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env ruby
# frozen_string_literal: true

require_relative '../qa'

ARGV.unshift('Test::Instance::All', ENV['GITLAB_URL'], '--')

QA::Scenario
    .const_get(ARGV.shift)
    .launch!(ARGV)