From abebc4e05e17990a805764cb42286626118fe3d1 Mon Sep 17 00:00:00 2001 From: Daniel Waterworth Date: Fri, 7 Aug 2020 17:04:55 +0100 Subject: [PATCH] DEV: Use verbose mode when running tests in CI --- lib/tasks/docker.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/docker.rake b/lib/tasks/docker.rake index 47af6ba468d..d4da7628591 100644 --- a/lib/tasks/docker.rake +++ b/lib/tasks/docker.rake @@ -196,7 +196,7 @@ task 'docker:test' do end if ENV['USE_TURBO'] - @good &&= run_or_fail("bundle exec ./bin/turbo_rspec #{params.join(' ')}".strip) + @good &&= run_or_fail("bundle exec ./bin/turbo_rspec --verbose #{params.join(' ')}".strip) else @good &&= run_or_fail("bundle exec rspec #{params.join(' ')}".strip) end