Integration with ScalaCheck's test runner doesn't work
Bobo1239 opened this issue · 2 comments
Bobo1239 commented
I'm trying to use Mill with ScalaCheck's own test runner (complete example here)
object foo extends ScalaModule {
def scalaVersion = "2.12.4"
object test extends Tests {
def ivyDeps = Agg(ivy"org.scalacheck::scalacheck:1.13.5")
def testFrameworks = Seq("org.scalacheck.ScalaCheckFramework")
}
}
but running mill foo.test
doesn't run any tests. @rockjam investigated this issue and concluded that it's a ScalaCheck-specific problem.
nsadeh commented
Hello, can I get a quick explanation for this? I see it was closed, is there a resolution?