Rakefile in ci_reporter-1.5.2 vs Rakefile in ci_reporter-1.5.3
- old
+ new
@@ -40,16 +40,17 @@
Spec::Rake::SpecTask.new do |t|
t.spec_opts = ["--diff", "unified"]
end
Spec::Rake::SpecTask.new("spec:rcov") do |t|
+ t.rcov_opts << '--exclude gems/*'
t.rcov = true
end
# so we don't confuse autotest
RCov::VerifyTask.new(:rcov) do |t|
- # Can't get threshold up to 100 until the RSpec < 1.0 compatibility
+ # Can't get threshold up to 100 unless RSpec backwards compatibility
# code is dropped
- t.threshold = 99
+ t.threshold = 98
t.require_exact_threshold = false
end
task "spec:rcov" do
rm_f "Manifest.txt"
end