Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool for java code coverage on GitHub [closed]

I have a Java project created in IntelliJ and using Gradle.

My repository is hosted on GitHub, I've also integrated Travis CI.

My tests are done using JUnit and Mockito, Java 8.

I'm looking for a tool that would automatically run tests whenever I push to my repository, providing me with information if tests passed and code coverage information. Would like it to generate a GitHub badge just like Travis CI does, so that I can see how each branch is covered and if it's passing.

Thanks!

like image 917
Patryk Krawczyk Avatar asked Aug 10 '16 07:08

Patryk Krawczyk


1 Answers

I decided to go with Codecov

Here's my GitHub repo with example implementation.

like image 82
Patryk Krawczyk Avatar answered Oct 06 '22 04:10

Patryk Krawczyk