summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-05-10 15:06:56 +0200
committerJacob Vosmaer <jacob@gitlab.com>2017-05-15 10:52:34 +0200
commit60106c1e1ecdb0bb8ed37e1137c846f1a415dabf (patch)
tree3ea6d648d13b13a291ca8e482f46b7399ea0354b /spec/support
parent43f037c903605b55ca1c34a24ab1ea1a522816fb (diff)
downloadgitlab-ce-60106c1e1ecdb0bb8ed37e1137c846f1a415dabf.tar.gz
Log gitaly output during testing
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/test_env.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/support/test_env.rb b/spec/support/test_env.rb
index f8ad0ccdb41..9bf9dc5d4b2 100644
--- a/spec/support/test_env.rb
+++ b/spec/support/test_env.rb
@@ -133,7 +133,8 @@ module TestEnv
def start_gitaly(gitaly_dir)
gitaly_exec = File.join(gitaly_dir, 'gitaly')
gitaly_config = File.join(gitaly_dir, 'config.toml')
- @gitaly_pid = spawn(gitaly_exec, gitaly_config, [:out, :err] => '/dev/null')
+ log_file = Rails.root.join('log/gitaly-test.log').to_s
+ @gitaly_pid = spawn(gitaly_exec, gitaly_config, [:out, :err] => log_file)
end
def stop_gitaly