-
Notifications
You must be signed in to change notification settings - Fork 52
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
Convention plugin + filtering projects #582
Comments
Hi, |
I want to filter like you said last week
but the problem is that I still need to configure the main build.gradle file anyway, so I can merge all the filtered projects |
If, for some reason, it becomes necessary to use a convention plugin, then it is enough to create an project extension to configure this convention plugin. Example
Project (kts)
or Project (Groovy)
*name |
that's great, I could make it works via convention plugin! I'm now curious about this scenario: I have 2 shards running for example 50 and 100 modules respectively (2 different steps on pipeline) Is it possible with kover to merge the reports after both executions? I was trying to do that via the root build.gradle file + convention plugin, but it seems that we have conflicts, is that possible? (my convention plugin doesn't cover the main build.gradle file) |
In other words, I want to merge all the projects which has coverage file generated (on the main build.gradle file) |
for now the only way is to use |
I think you may close this issue and track this, because there will be a discussion of the same question. |
Hey there!
I'm wondering how I should use kover for this case:
I need to configure kover using my convention plugin because I want to run using a filtered list of projects.
But looks like we need to configure the main build.gradle file anyway, so I'm not sure how we can avoid configuration conflicts there, is there any default configuration we can leave there to merge all the reports generated by my convention plugin kover configuration?
this is how I'm using it so far, but I think allProjects won't work the way I need
The text was updated successfully, but these errors were encountered: