diff --git a/CHANGELOG.md b/CHANGELOG.md index 56fab7a..9b34d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## main [(unreleased)](https://github.com/fastruby/skunk/compare/v0.5.2...HEAD) * + +* [BUGFIX: Better test coverage tracking for skunk](https://github.com/fastruby/skunk/pull/108) * [FEATURE: Add Ruby 3.2 Support](https://github.com/fastruby/skunk/pull/106) * [BUGFIX: Fix skunk workflow](https://github.com/fastruby/skunk/pull/104) * [BUGFIX: Fix documentation and refactor `skunk_score` method](https://github.com/fastruby/skunk/pull/102) diff --git a/test/test_helper.rb b/test/test_helper.rb index a6faf97..c48b904 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -12,6 +12,9 @@ ] SimpleCov.start do + add_filter "lib/skunk/version.rb" + add_filter "test/lib" + track_files "lib/**/*.rb" end