File: .simplecov

package info (click to toggle)
ruby-rubydns 1.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 548 kB
  • sloc: ruby: 1,796; makefile: 7
file content (15 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

SimpleCov.start do
	add_filter "/spec/"
end

# Work correctly across forks:
pid = Process.pid
SimpleCov.at_exit do
	SimpleCov.result.format! if Process.pid == pid
end

if ENV['TRAVIS']
	require 'coveralls'
	Coveralls.wear!
end