From 518d2be1e110a046e49e15b2031d195c82a27c6d Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Tue, 3 Apr 2012 21:51:18 -0700 Subject: [PATCH] use pretty formatter on CI for great justice --- lib/tasks/cucumber.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/cucumber.rake b/lib/tasks/cucumber.rake index 0f7829077..57e29803d 100644 --- a/lib/tasks/cucumber.rake +++ b/lib/tasks/cucumber.rake @@ -19,7 +19,7 @@ begin t.fork = true # You may get faster startup if you set this to false t.profile = 'default' cucumber_opts = "" - cucumber_opts << " -f pretty" unless ENV["TRAVIS"] + cucumber_opts << " -f pretty" cucumber_opts << ((ENV["GROUP"] == "oauth") ? " --tags @oauth-group" : " --tags ~@oauth-group") t.cucumber_opts = cucumber_opts end