diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-09 11:56:23 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-09 11:56:23 +0100 |
commit | 6c6fb1d8bb2c6aa44553ebf35496d64ff6b202d2 (patch) | |
tree | 01ca248b75f260f84068de9ae43fbb0eb5b7e2ff /.gitlab-ci.yml | |
parent | a2cfb44157f253f3dbe86732470541a6f7799217 (diff) | |
download | gitlab-ce-6c6fb1d8bb2c6aa44553ebf35496d64ff6b202d2.tar.gz |
Split up spec:other even more
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 943e40d5303..aec9936da28 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,6 +31,20 @@ spec:models: - ruby - mysql +spec:lib: + script: + - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:lib + tags: + - ruby + - mysql + +spec:services: + script: + - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:services + tags: + - ruby + - mysql + spec:benchmark: script: - RAILS_ENV=test bundle exec rake spec:benchmark |