summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-04-09 09:07:39 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2018-04-09 13:20:45 -0700
commit9295d5240a417cd09c33317ab2d2a99a36e50485 (patch)
tree1fb5b3f2a818517840c42ecd1c0697f091443912 /build.sc
parent11122c48452d40eb32086fa247ce06d5d6f1a789 (diff)
downloadmill-9295d5240a417cd09c33317ab2d2a99a36e50485.tar.gz
mill-9295d5240a417cd09c33317ab2d2a99a36e50485.tar.bz2
mill-9295d5240a417cd09c33317ab2d2a99a36e50485.zip
caffeine core and guava tests seem to pass
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index 8d1ea053..59b95abc 100755
--- a/build.sc
+++ b/build.sc
@@ -210,7 +210,10 @@ object integration extends MillModule{
def testArgs = T{
scalajslib.testArgs() ++
scalaworker.testArgs() ++
- Seq("-DMILL_TESTNG=" + testng.runClasspath().map(_.path).mkString(",")) ++
+ Seq(
+ "-DMILL_TESTNG=" + testng.runClasspath().map(_.path).mkString(","),
+ "-DMILL_VERSION=" + build.publishVersion()._2
+ ) ++
(for((k, v) <- testRepos()) yield s"-D$k=$v")
}
def forkArgs = testArgs()