Is there a way for RSpec to continue to process specifications after an exception occurs?
Here is what my specification task looks like:
SPEC_PATTERN = "spec/**/*_spec.rb" Spec::Rake::SpecTask.new() do |t| t.spec_files = FileList[SPEC_PATTERN] t.verbose = true t.spec_opts = ["--format", "html:spec/spec_report.html"] t.fail_on_error = false t.rcov = true t.rcov_dir = 'coverage' t.rcov_opts = ['--exclude', 'spec'] end
source share