summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-25 10:11:36 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-25 15:50:34 -0800
commita75ce74b632d5f5f570220a9b10d32587dd90b58 (patch)
treebc5170624ad520833368b9eb3f52f013cc9d0b5c /test.sh
parent048fe23d116793039e7d245edd4afdcc3bdd3cc2 (diff)
downloadmill-a75ce74b632d5f5f570220a9b10d32587dd90b58.tar.gz
mill-a75ce74b632d5f5f570220a9b10d32587dd90b58.tar.bz2
mill-a75ce74b632d5f5f570220a9b10d32587dd90b58.zip
Refactor `mill.Main` to avoid going through Ammonite's main-method-dispatch system
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/test.sh b/test.sh
index ffae4a10..e4b78cbe 100755
--- a/test.sh
+++ b/test.sh
@@ -9,11 +9,11 @@ git clean -xdf
sbt core/test scalaplugin/test bin/test:assembly
# Second build & run tests using Mill built using SBT
-bin/target/mill run Core.test
-bin/target/mill run ScalaPlugin.test
-bin/target/mill run assembly
+bin/target/mill Core.test
+bin/target/mill ScalaPlugin.test
+bin/target/mill devAssembly
# Third build & run tests using Mill built using Mill
-out/assembly run Core.test
-out/assembly run ScalaPlugin.test
-out/assembly run assembly \ No newline at end of file
+out/devAssembly Core.test
+out/devAssembly ScalaPlugin.test
+out/devAssembly devAssembly \ No newline at end of file