diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2016-06-30 18:02:54 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2016-06-30 18:02:54 +0000 |
commit | fa3e82820398b71bcdc4904ee52b981fe270fa65 (patch) | |
tree | 5653f965915627d7c6b0c79aef6eddb9860c26e0 | |
parent | 6e82c0e06ea25d6d0871037fb09301698ca972bd (diff) | |
parent | e8a8b0b818c96934ad1f2326053efa4d31c8850e (diff) | |
download | gitlab-ce-fa3e82820398b71bcdc4904ee52b981fe270fa65.tar.gz |
Merge branch '18991-update-test-env-gitlab-shell-version-when-v3-1-0-is-published' into 'master'
Remove hardcoded gitlab-shell version in test env now that the required tag is published
See merge request !5023
-rw-r--r-- | spec/support/test_env.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/support/test_env.rb b/spec/support/test_env.rb index be5331e4770..9f9ef20f99b 100644 --- a/spec/support/test_env.rb +++ b/spec/support/test_env.rb @@ -81,8 +81,7 @@ module TestEnv def setup_gitlab_shell unless File.directory?(Gitlab.config.gitlab_shell.path) - # TODO: Remove `[shards]` when gitlab-shell v3.1.0 is published - `rake gitlab:shell:install[shards]` + `rake gitlab:shell:install` end end |