gitlab-org--gitlab-foss/qa/qa/scenario/test/integration/github.rb

21 lines
411 B
Ruby

# frozen_string_literal: true
module QA
module Scenario
module Test
module Integration
class Github < Test::Instance::All
tags :github
def perform(address, *rspec_options)
# This test suite requires a GitHub personal access token
Runtime::Env.require_github_access_token!
super
end
end
end
end
end
end