Skip to content

Commit

Permalink
Merge pull request #108 from fastruby/fixes/simplecov-filter
Browse files Browse the repository at this point in the history
Add filters to only calculate coverage for relevant files
  • Loading branch information
mateusdeap authored Feb 17, 2023
2 parents 440428d + 59e669f commit 0eaba8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

* <INSERT YOUR FEATURE OR BUGFIX HERE>

* [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)
Expand Down
3 changes: 3 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
]

SimpleCov.start do
add_filter "lib/skunk/version.rb"
add_filter "test/lib"

track_files "lib/**/*.rb"
end

Expand Down

0 comments on commit 0eaba8d

Please sign in to comment.