diff options
-rw-r--r-- | build.sc | 7 | ||||
-rwxr-xr-x | mill | 2 |
2 files changed, 2 insertions, 7 deletions
@@ -51,17 +51,12 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { PathRef(spacePath) } - object test extends Tests with ScalafmtModule { + object test extends Tests with TestModule.ScalaTest with ScalafmtModule { def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.5") - def testFrameworks = Seq("org.scalatest.tools.Framework") override def compile = T { reformat().apply() super.compile() } - - def testOnly(args: String*) = T.command { - super.runMain("org.scalatest.run", args: _*) - } } } @@ -3,7 +3,7 @@ # This is a wrapper script, that automatically download mill from GitHub release pages # You can give the required mill version with MILL_VERSION env variable # If no version is given, it falls back to the value of DEFAULT_MILL_VERSION -DEFAULT_MILL_VERSION=0.9.5 +DEFAULT_MILL_VERSION=0.9.8 set -e |