We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
testIntegration
Test source sets inflate the coverage percentage as they are pretty much covered 100% (duh).
Instead of the current excludedSourceSets.add of all JvmTestSuite source sets, use explicit opt-in and just select the main source sets.
excludedSourceSets.add
JvmTestSuite
main
The text was updated successfully, but these errors were encountered:
fix(tests): #108 exclude nonstandard sourceSets from test coverage
14b790c
Fixes #108
Temporarily fixed using afterEvaluate, awaiting the implementation of Kotlin/kotlinx-kover#714 in order to switch to the included-only approach.
afterEvaluate
Sorry, something went wrong.
2701ee9
Successfully merging a pull request may close this issue.
Test source sets inflate the coverage percentage as they are pretty much covered 100% (duh).
Instead of the current
excludedSourceSets.add
of allJvmTestSuite
source sets, use explicit opt-in and just select themain
source sets.The text was updated successfully, but these errors were encountered: