diff options
author | Jacob Vosmaer (GitLab) <jacob@gitlab.com> | 2017-11-21 12:28:02 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-11-21 12:28:02 +0000 |
commit | 6f1e9f7ef773ead892a1d43ec15a38dfb486e229 (patch) | |
tree | fcab0f4cbbd28f6834b9eb6da208b71bb0ae4341 /spec | |
parent | 15cb13ee87939a339631c217fcf42223af51b31e (diff) | |
download | gitlab-ce-6f1e9f7ef773ead892a1d43ec15a38dfb486e229.tar.gz |
Fix slow gitaly dev test bundle
Diffstat (limited to 'spec')
-rw-r--r-- | spec/tasks/gitlab/gitaly_rake_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/tasks/gitlab/gitaly_rake_spec.rb b/spec/tasks/gitlab/gitaly_rake_spec.rb index 5dd8fe8eaa5..255f0a37ec8 100644 --- a/spec/tasks/gitlab/gitaly_rake_spec.rb +++ b/spec/tasks/gitlab/gitaly_rake_spec.rb @@ -57,7 +57,7 @@ describe 'gitlab:gitaly namespace rake task' do it 'calls gmake in the gitaly directory' do expect(Gitlab::Popen).to receive(:popen).with(%w[which gmake]).and_return(['/usr/bin/gmake', 0]) - expect(main_object).to receive(:run_command!).with(command_preamble + %w[gmake BUNDLE_PATH=/fake/bundle_path]).and_return(true) + expect(main_object).to receive(:run_command!).with(command_preamble + %w[gmake BUNDLE_FLAGS=--no-deployment]).and_return(true) run_rake_task('gitlab:gitaly:install', clone_path) end @@ -70,7 +70,7 @@ describe 'gitlab:gitaly namespace rake task' do end it 'calls make in the gitaly directory' do - expect(main_object).to receive(:run_command!).with(command_preamble + %w[make BUNDLE_PATH=/fake/bundle_path]).and_return(true) + expect(main_object).to receive(:run_command!).with(command_preamble + %w[make BUNDLE_FLAGS=--no-deployment]).and_return(true) run_rake_task('gitlab:gitaly:install', clone_path) end |