diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-09 10:50:38 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-09 10:50:43 +0100 |
commit | 9ebdee09673d79b57c07c7332ee87791229b6f72 (patch) | |
tree | a929b430575bcf000241d924e5c9512c60386017 /.gitlab-ci.yml | |
parent | 20b55981bc09c82dcbc523123cbd81a5bf2ae593 (diff) | |
download | gitlab-ce-9ebdee09673d79b57c07c7332ee87791229b6f72.tar.gz |
Split up feature specs more
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e8290fb36b2..527ccb08ab7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,9 +39,16 @@ spec:other: - ruby - mysql -spinach:project: +spinach:project:half: script: - - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project + - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:half + tags: + - ruby + - mysql + +spinach:project:rest: + script: + - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:rest tags: - ruby - mysql |