DEV: Use verbose mode when running tests in CI

This commit is contained in:
Daniel Waterworth 2020-08-07 17:04:55 +01:00
parent e55578681e
commit abebc4e05e

View File

@ -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