-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
disableTestTask configures the task but should not #615
Comments
Alternatively, only depend on kover.currentProject {
sources {
srcDirs("integrationTest") // same behavior like builtin sourceSets
}
instrumentation {
include(tests.integrationTest)
}
} |
Hi, This can be circumvented by using the new named function, however it will only work in Gradle starting with version |
But what about using opt-in of other tasks instead to not configure the tasks by default? |
This can be done, but in this case it is necessary to significantly redesign the workflow for the plugin. Since you are using Gradle version 8.7, we will implement usage of the new
|
Unfortunately, the The use of We are waiting for the fix to be released in Gradle. |
I found a solution (for my use-case): I switched to the new settings plugin and everything works now without configuring the integration test tasks, nice! But I have one question left: How do I setup rules in settings plugin? |
There is no verify task in settings plugin right now, but I think we will add it in the next release |
@hfhbd, verification was added in |
Describe the bug
I use the
jvm-test-suite
plugin and add anintegrationTest
but I don't want to include the task/test results in kover.Errors
./gradlew build
=>Expected behavior
./gradlew build
=> no errorReproducer
Reports
If applicable, report files or screenshots.
Environment
The text was updated successfully, but these errors were encountered: