-
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
Can I generate single report collecting the xml reports already generated? #645
Comments
Hi, |
Thanks for your quick response @shanshin
For solve the issue with github actions, I was thinking about upload all the xml to github artifacts, and then create another task to download all xmls and generate coverage, but not sure if in this case I will take advantage of gradle cache. I will investigate. If no more solutions can be provided, then you can close this question :) |
This is a solvable issue, but the solution is not very convenient: there are special tasks called You can generate an HTML or XML report from several binary reports, but for this you need to pass the paths to all sources and all compiled classes. This can be done using the Kover CLI or a special Java dependency: |
Thanks! I will evaluate all the options :) |
Closed as answered. |
This will allow to build reports on tests run on various machines. Relates #585 Relates #645 Co-authored-by: Leonid Startsev <[email protected]> PR #663
The ability to use coverage from already generated reports has been added in |
Thanks a lot for notifying me @shanshin |
Hello,
First of all, thanks for your effort, you are creating an amazing tool :)
Right now, I'm working in a big multimodule project and I am executing unit tests in multiple executions.
So, I would like to know if, once are executions are completed, is it possible to generate single report without executing unit tests again?
Thanks!
The text was updated successfully, but these errors were encountered: