From 8bc04cb2f4c638ecc04a87af0c4ca4e87ccdf1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 6 Sep 2019 13:15:16 +0200 Subject: [PATCH] Use the standard cucumber formatter everywhere The "pretty" formatter could be helpful when debugging order dependent failures (maybe), but other than that, it's just too verbose (specially with parallel_tests), and it makes it hard to see the actual scenarios that failed and the error messages. --- cucumber.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cucumber.yml b/cucumber.yml index aad0f10f8de..2f6f0d819a4 100644 --- a/cucumber.yml +++ b/cucumber.yml @@ -1,6 +1,5 @@ <% - std_format = RUBY_ENGINE == "jruby" && Gem::Version.new(RUBY_ENGINE_VERSION) < Gem::Version.new("9.2") ? "progress" : "pretty" - std_opts = "--format #{std_format} --order random" + std_opts = "--format progress --order random" default_opts = std_opts + " --format ParallelTests::Gherkin::RuntimeLogger --out tmp/parallel_runtime_cucumber.log" %>