Skip to content

Commit

Permalink
ability to run tagged features
Browse files Browse the repository at this point in the history
  • Loading branch information
davetron5000 committed Sep 3, 2011
1 parent 097035f commit eeef705
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ end
CUKE_RESULTS = 'results.html'
CLEAN << CUKE_RESULTS
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
t.cucumber_opts = opts
t.fork = false
end

Expand Down

0 comments on commit eeef705

Please sign in to comment.