diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-08-21 11:12:23 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-08-21 11:12:23 +0200 |
commit | 6232c26ac7aa279f7082ceb04b16e42673196475 (patch) | |
tree | 04ec906c8f55528e4735be86de76da4f3c1fd520 /qa/qa.rb | |
parent | 00aa4d4c8c57a2f305070c2f9cb86fde6bc14285 (diff) | |
parent | cc0bf2f6231a3c231450a7ef8f272de9f9591eaa (diff) | |
download | gitlab-ce-6232c26ac7aa279f7082ceb04b16e42673196475.tar.gz |
Merge branch 'master' into sh-add-object-storage-qa
* master: (31 commits)
Diffstat (limited to 'qa/qa.rb')
-rw-r--r-- | qa/qa.rb | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -77,14 +77,16 @@ module QA # autoload :Bootable, 'qa/scenario/bootable' autoload :Actable, 'qa/scenario/actable' - autoload :Taggable, 'qa/scenario/taggable' autoload :Template, 'qa/scenario/template' ## # Test scenario entrypoints. # module Test - autoload :Instance, 'qa/scenario/test/instance' + module Instance + autoload :All, 'qa/scenario/test/instance/all' + autoload :Smoke, 'qa/scenario/test/instance/smoke' + end module Integration autoload :Github, 'qa/scenario/test/integration/github' |