-
Notifications
You must be signed in to change notification settings - Fork 158
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
Paths are wrong in aggregate reports. #93
Comments
Digging deeper, I noticed something else: There is directory tree under So, the link in the aggregate coverage report has mixed different paths together. Aside, I suggest not using the absolute path in the report, since it leaks information not related to the project, when I am sharing the report to someone. For example, if I checkout a project under |
scoverage/scalac-scoverage-plugin#109 + #98 should fix this issue |
FYI, I also bumped into this. Another problem was that if I run |
Possibly related: #69. |
Try resolvers ++= Seq( Classpaths.sbtPluginSnapshots, Resolver.sonatypeRepo("snapshots") )
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.5-SNAPSHOT") to your |
@gslowikowski Thanks! Linking works fine, but I still get |
To reproduce the problem, here's what I do:
The first |
Are you testing on |
Thanks :) |
@gslowikowski thank you for looking into it :) |
I believe this should be fixed. If you still have an issue with the please do report back. |
In the aggregate report, the path for an individual file's report, is wrong:
It should be:
project/subproject/target/scala-2.11/package/file.scala.html
But it ends up being:
project/subproject/src/main/scala/package/file.scala.html
The text was updated successfully, but these errors were encountered: