summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-21 23:35:52 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-21 23:35:52 -0800
commit4a0658da074bc7b7df0c5bdff90e2c6bb1977b15 (patch)
tree59d077d40a7e96b419161f5b10cb17d326a51f9f /build.sc
parent3e80ade3249bc83b564d7b5bd31853c8affd555d (diff)
downloadmill-4a0658da074bc7b7df0c5bdff90e2c6bb1977b15.tar.gz
mill-4a0658da074bc7b7df0c5bdff90e2c6bb1977b15.tar.bz2
mill-4a0658da074bc7b7df0c5bdff90e2c6bb1977b15.zip
- Make `forkTest` and `forkRun` the default, renaming `test` and `run` to `testLocal` and `runLocal`
- Support passing `forkEnv` parameters to `test` and `run`, necessary to get Ammonite working - Standardize signatures of `Jvm.interactiveSubprocess`/`Jvm.subprocess` - `Jvm.inprocess` is now `Jvm.runLocal` - Swap `TestModule.testLocal` over to using `Jvm.runLocal`, for consistency with everything else
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc1
1 files changed, 0 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index ad916f91..1033fc48 100755
--- a/build.sc
+++ b/build.sc
@@ -30,7 +30,6 @@ trait MillModule extends ScalaModule{ outer =>
val test = new Tests(implicitly)
class Tests(ctx0: mill.define.Ctx) extends mill.Module()(ctx0) with super.Tests{
- def defaultCommandName() = "forkTest"
def forkArgs = T{ testArgs() }
def moduleDeps =
if (this == core.test) Seq(core)