relevance-rcov 0.8.5.1 → 0.8.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rcov/formatters/failure_report.rb +3 -0
- data/lib/rcov/version.rb +1 -1
- metadata +1 -1
@@ -7,6 +7,9 @@ module Rcov
|
|
7
7
|
puts "You failed to satisfy the coverage theshold of #{@failure_threshold}%"
|
8
8
|
exit(1)
|
9
9
|
end
|
10
|
+
if (coverage - @failure_threshold) > 3
|
11
|
+
puts "Your coverage has significantly increased over your threshold of #{@failure_threshold}. Please increase it."
|
12
|
+
end
|
10
13
|
end
|
11
14
|
end
|
12
15
|
end
|
data/lib/rcov/version.rb
CHANGED