diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-01-22 09:59:55 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-01-22 09:59:55 +0100 |
commit | d0b08f1c50b0b4106c0ae5f398912aab596a447a (patch) | |
tree | 4135671cfe12d4c9ec3eb69f025898f9773ddbd5 /qa/qa.rb | |
parent | 63dbcd24836b4b1da3f7c1d61851b6603a4c4461 (diff) | |
download | gitlab-ce-d0b08f1c50b0b4106c0ae5f398912aab596a447a.tar.gz |
Add GitLab Runner service to GitLab QA
Diffstat (limited to 'qa/qa.rb')
-rw-r--r-- | qa/qa.rb | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -126,10 +126,13 @@ module QA end ## - # Classes describing shell interaction with GitLab + # Classes describing services being part of GitLab and how we can interact + # with these services, like through the shell. # - module Shell - autoload :Omnibus, 'qa/shell/omnibus' + module Service + autoload :Shellable, 'qa/service/shellable' + autoload :Omnibus, 'qa/service/omnibus' + autoload :Runner, 'qa/service/runner' end ## |