-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
.simplecov
35 lines (28 loc) · 1000 Bytes
/
.simplecov
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
32
33
34
35
# frozen_string_literal: true
SimpleCov.configure do
# Activate branch coverage
enable_coverage :branch
# ignore this file
add_filter '.simplecov'
add_filter 'features'
# Rake tasks aren't tested with rspec
add_filter 'Rakefile'
add_filter 'lib/tasks'
#
# Changed Files in Git Group
# @see http://fredwu.me/post/35625566267/simplecov-test-coverage-for-changed-files-only
untracked = `git ls-files --exclude-standard --others`
unstaged = `git diff --name-only`
staged = `git diff --name-only --cached`
all = untracked + unstaged + staged
changed_filenames = all.split("\n")
add_group 'Changed' do |source_file|
changed_filenames.select do |changed_filename|
source_file.filename.end_with?(changed_filename)
end
end
add_group 'Libraries', 'lib'
# Specs are reported on to ensure that all examples are being run and all
# lets, befores, afters, etc are being used.
add_group 'Specs', 'spec/'
end