summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/integration/github.rb
blob: 857a1f00bd5ab5de04f20ab5dd7578069eaa4a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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