summaryrefslogtreecommitdiff
path: root/integration
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-01 01:48:28 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-01 10:10:19 -0800
commitcb5e3291155ba0d29c1a530d6c217d22a3a743f4 (patch)
tree3f441311ed0c3c0f122c0cefef5cee560df02e2c /integration
parentb1e622a42de5d48b82c108f2d7931b170a460f5e (diff)
downloadmill-cb5e3291155ba0d29c1a530d6c217d22a3a743f4.tar.gz
mill-cb5e3291155ba0d29c1a530d6c217d22a3a743f4.tar.bz2
mill-cb5e3291155ba0d29c1a530d6c217d22a3a743f4.zip
Make `HelloWorldTests` take an explicit output path so they are less sensitive to working directories
Make `run` and `runMain` take option CLI args
Diffstat (limited to 'integration')
-rw-r--r--integration/src/test/resource/jawn/build.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/src/test/resource/jawn/build.sc b/integration/src/test/resource/jawn/build.sc
index 9c9b41dc..167407bd 100644
--- a/integration/src/test/resource/jawn/build.sc
+++ b/integration/src/test/resource/jawn/build.sc
@@ -32,7 +32,7 @@ class Jawn(crossVersion: String) extends mill.Module{
object Ast extends JawnModule{
def projectDeps = Seq(Parser, Util)
def testProjectDeps = Seq(Parser.test, Util.test)
- def basePath = ammonite.ops.pwd / 'target / 'workspace / 'jawn / 'acyclic
+ def basePath = ammonite.ops.pwd / 'target / 'workspace / 'jawn / 'ast
}
class Support(name: String, ivyDeps0: Dep*) extends JawnModule{
def projectDeps = Seq[Module](Parser)