-
Notifications
You must be signed in to change notification settings - Fork 127
Scoverage HTML report may fail to render #62
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
Comments
Makes sense. Will fix thanks.
|
After Play 2.3.6 was released now Specs2 "index.html" file is written instead of scoverage report when using with Play. |
Will be fixed in release 0.99.11 which I am prepping now. |
@cleverdeveloper Where (in which jar file) is this "index.html" file? I don't see it. |
Because classpath is flattened,
getResource("/index.html")
will pick any index.html on the root of the classpath. In my particular issue, it was a index.html bundled in specs2.It is easy to avoid such name collisions, just by putting the resources in a subfolder e.g
src/main/resources/scoverage/index.html
.The text was updated successfully, but these errors were encountered: