File: .simplecov

package info (click to toggle)
ruby-http-2 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,360 kB
  • sloc: ruby: 6,031; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

SimpleCov.start do
  command_name "Spec"
  add_filter "/.bundle/"
  add_filter "/vendor/"
  add_filter "/spec/"
  add_filter "/lib/http/2/base64"
  coverage_dir "coverage"
  minimum_coverage(RUBY_ENGINE == "truffleruby" ? 85 : 90)
end