diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-07-10 11:44:12 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-22 19:49:53 +0100 |
commit | 71d45dcfe204c1a11438e4012ad9de77fb9f9d03 (patch) | |
tree | c007f6626ee4d0d7836aaca5cf187e51a59f8461 /build.sc | |
parent | 210199a10c88a01d0aeaa2cfae36c6852dc6f81f (diff) | |
download | spacebeans-71d45dcfe204c1a11438e4012ad9de77fb9f9d03.tar.gz spacebeans-71d45dcfe204c1a11438e4012ad9de77fb9f9d03.zip |
Updated mill
Diffstat (limited to 'build.sc')
-rw-r--r-- | build.sc | 7 |
1 files changed, 1 insertions, 6 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: _*) - } } } |