Merge branch 'qa-317' into 'master'
[QA] Fix a 'superclass must be a Class' error Closes gitlab-qa#317 See merge request gitlab-org/gitlab-ce!21340
This commit is contained in:
commit
1c95c5ec86
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ module QA
|
|||
module Scenario
|
||||
module Test
|
||||
module Integration
|
||||
class Github < Test::Instance
|
||||
class Github < Test::Instance::All
|
||||
tags :github
|
||||
|
||||
def perform(address, *rspec_options)
|
||||
|
|
|
@ -2,7 +2,7 @@ module QA
|
|||
module Scenario
|
||||
module Test
|
||||
module Integration
|
||||
class Kubernetes < Test::Instance
|
||||
class Kubernetes < Test::Instance::All
|
||||
tags :kubernetes
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,7 +2,7 @@ module QA
|
|||
module Scenario
|
||||
module Test
|
||||
module Integration
|
||||
class LDAP < Test::Instance
|
||||
class LDAP < Test::Instance::All
|
||||
tags :ldap
|
||||
end
|
||||
end
|
||||
|
|
|
@ -6,7 +6,7 @@ module QA
|
|||
# Run test suite against any GitLab instance where mattermost is enabled,
|
||||
# including staging and on-premises installation.
|
||||
#
|
||||
class Mattermost < Test::Instance
|
||||
class Mattermost < Test::Instance::All
|
||||
tags :core, :mattermost
|
||||
|
||||
def perform(address, mattermost, *rspec_options)
|
||||
|
|
Loading…
Reference in a new issue