In your Spring Boot Test article you reference JUnit-Insights towards the end to gather information about the time it takes to run tests. I'd really like to get this dependency working but I can't get it to work. Do you have any info on how to get it to work?
First off, I can't find the jar anywhere. But I was able to build it with this command:
docker run -v ~/Documents:/hostDocuments -it --user root gradle:4.6-jdk8-alpine sh -c "apk update && apk add git && git clone https://github.com/adessoSE/junit-insights.git && cd junit-insights && gradle jar && cd .. && cp -R junit-insights /hostDocuments/."
And I can get the dependency in my project using the instructions on their readme for local development, but I still can't get any reports to be generated.
I'd appreciate any help I can get to get this to work.
In your Spring Boot Test article you reference JUnit-Insights towards the end to gather information about the time it takes to run tests. I'd really like to get this dependency working but I can't get it to work. Do you have any info on how to get it to work?
First off, I can't find the jar anywhere. But I was able to build it with this command:
docker run -v ~/Documents:/hostDocuments -it --user root gradle:4.6-jdk8-alpine sh -c "apk update && apk add git && git clone https://github.com/adessoSE/junit-insights.git && cd junit-insights && gradle jar && cd .. && cp -R junit-insights /hostDocuments/."
And I can get the dependency in my project using the instructions on their readme for local development, but I still can't get any reports to be generated.
I'd appreciate any help I can get to get this to work.