summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/integration/github.rb
blob: 1d22b532aa52688d299c6b508ef2f94a43ba4f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module QA
  module Scenario
    module Test
      module Integration
        class Github < Test::Instance
          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