mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
10 lines
147 B
Text
10 lines
147 B
Text
|
# frozen_string_literal: true
|
||
|
|
||
|
if ENV['SKIP_COVERAGE'].to_s.empty?
|
||
|
SimpleCov.start do
|
||
|
minimum_coverage 95
|
||
|
|
||
|
add_filter '/spec/'
|
||
|
end
|
||
|
end
|