-
-
Notifications
You must be signed in to change notification settings - Fork 379
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
Mill ScoverageModule confict with GenIdea #3097
Comments
A remark: If you change the Mill version to |
Thank you for reporting it. I think it might be related to this change, which was released in Mill 0.11.7. The idea behind the change was, that we don't want to see each scoverage module twice, esp. as IDEA isn't very great at navigating sources which belong to more than one module. But since scoverage tests don't depend on the |
Here is a workaround: --- a/build.sc
+++ b/build.sc
@@ -11,6 +11,10 @@
ivy"com.lihaoyi::mainargs:0.6.2"
)
+ override lazy val scoverage: ScoverageData = new ScoverageData {
+ def skipIdea = false // or foo.skipIdea
+ }
+
object test extends ScoverageTests with ScalaTests {
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.7.11")
def testFramework = "utest.runner.Framework" |
Scoverage conflict with GenIdea
Config
Mill version
0.11.7
Issue
I found an issue/conflict when I used ScoverageModule. If I add Scoverage to my project then the idea integration produces faulty configuration.
When I add Scoverage, by following the documentation: https://mill-build.com/mill/contrib/scoverage.html, the dependency between the test module and its parent module disappears :(
I was able to reproduce it with the
1-simple-scala
example. Here is the modified version:After executing
mill mill.idea.GenIdea/idea
you wont find the module decalaration to the root module in the.idea/mill_modules/test.iml
The original version of the example produces:
After applying the
scoverage
configuration this line is missing:Reproduction
You can find the reproduction in the following repository:
https://github.com/romain-gilles-ultra/mill-scoverage-idea
The text was updated successfully, but these errors were encountered: