davidburstrom
davidburstrom
Unfortunately this is produced by [SpinnerListener](https://github.com/hcoles/pitest/blob/master/pitest-entry/src/main/java/org/pitest/mutationtest/tooling/SpinnerListener.java), which is linked up through [MutationCoverage](https://github.com/hcoles/pitest/blob/master/pitest-entry/src/main/java/org/pitest/mutationtest/tooling/MutationCoverage.java#L252) only if the output is not verbose. Since you probably don't want to turn on verbose logging, that...
Sounds good, I've got something in the works.
There we go, how does this look?
I notice when trying this out locally that if the line coverage calculation fails AND there is a pre-existing non-timestamped report, the report path will be printed anyway. I reckon...
> Yes, it might be tricky to determine a status based on the PIT output. However, for non-timestamped report, we could try to check its modification date before execution and,...
The `additionalClasspath` has entries from the main source set (which for all practical purposes definitely should have entries) as well as test runtime classpath elements, so that won't work. I...
It is of course true that the test classpath _can_ contain the test cases, imported from another project. I'm not sure if that is a sufficiently common case... Using `@SkipWhenEmpty...
@AnakinPt As for your classpath issue on Windows, the Gradle plugin has support for `useClasspathFile = true` which should solve your issue.
Hm. Is there any integrated way I can get logs from the minion?
I found the issue. Side note: Even with verbose logging, it wasn't reported to the main log Maybe because it's an exception that gets logged to stdout. I eventually managed...