File: remove-simplecov

package info (click to toggle)
ruby-tool 0.2.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 148 kB
  • sloc: ruby: 283; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Description: Remove use of simplecov for coverage analysis
Author: Balasankar C <balasankarc@autistici.org>
Last-Update: 2017-06-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/spec/support/coverage.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-require 'tool/warning_filter'
-require 'simplecov'
-require 'coveralls'
-
-SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
-  SimpleCov::Formatter::HTMLFormatter,
-  Coveralls::SimpleCov::Formatter
-]
-
-SimpleCov.start do
-  project_name 'tool'
-  minimum_coverage 100
-  coverage_dir '.coverage'
-
-  add_filter '/spec/'
-  add_group 'Library', 'lib'
-end
--- a/.rspec
+++ b/.rspec
@@ -1,3 +1,2 @@
 --color
 --tty
--r support/coverage