From 6ef27e7a05c026b8b8aef1c0c473df769cfa8299 Mon Sep 17 00:00:00 2001 From: Sebastian Schuster Date: Mon, 29 Jul 2013 17:54:10 +0200 Subject: [PATCH] Disabled cucumber strict setting to not complain on pending steps --- config/cucumber.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cucumber.yml b/config/cucumber.yml index 19b288df9d..dc7bcdd5ce 100644 --- a/config/cucumber.yml +++ b/config/cucumber.yml @@ -1,8 +1,8 @@ <% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" -std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip" +std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --tags ~@wip" %> default: <%= std_opts %> features wip: --tags @wip:3 --wip features -rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip +rerun: <%= rerun_opts %> --format rerun --out rerun.txt --tags ~@wip