Skip to content

Commit

Permalink
Fix slow build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwynne committed Jul 10, 2012
1 parent 2e1bf6c commit 8e575b3
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 @@ -8,11 +8,13 @@ end
namespace :cukes do
desc "Run end-to-end tests"
task :slow do
sh "SLOW=1 cucumber"
ENV['SLOW'] = 'true'
sh "cucumber"
end

desc "Run end-to-end tests with stubbed out file system for speed"
task :fast do
ENV['SLOW'] = nil
sh "cucumber"
end
end

0 comments on commit 8e575b3

Please sign in to comment.