Skip to content

Commit 0eaba8d

Browse files
authored
Merge pull request #108 from fastruby/fixes/simplecov-filter
Add filters to only calculate coverage for relevant files
2 parents 440428d + 59e669f commit 0eaba8d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## main [(unreleased)](https://github.com/fastruby/skunk/compare/v0.5.2...HEAD)
99

1010
* <INSERT YOUR FEATURE OR BUGFIX HERE>
11+
12+
* [BUGFIX: Better test coverage tracking for skunk](https://github.com/fastruby/skunk/pull/108)
1113
* [FEATURE: Add Ruby 3.2 Support](https://github.com/fastruby/skunk/pull/106)
1214
* [BUGFIX: Fix skunk workflow](https://github.com/fastruby/skunk/pull/104)
1315
* [BUGFIX: Fix documentation and refactor `skunk_score` method](https://github.com/fastruby/skunk/pull/102)

test/test_helper.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
]
1313

1414
SimpleCov.start do
15+
add_filter "lib/skunk/version.rb"
16+
add_filter "test/lib"
17+
1518
track_files "lib/**/*.rb"
1619
end
1720

0 commit comments

Comments
 (0)