summaryrefslogtreecommitdiff
path: root/main/test
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-11 01:52:32 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-11 01:52:32 -0800
commit2063febc08963321c367a516b3498d16c21b34ee (patch)
tree17ab661532e23ca387eb99fd11724c8d05257a23 /main/test
parentde9e237c7f9cd3fe2939399527df17270cbd322a (diff)
downloadmill-2063febc08963321c367a516b3498d16c21b34ee.tar.gz
mill-2063febc08963321c367a516b3498d16c21b34ee.tar.bz2
mill-2063febc08963321c367a516b3498d16c21b34ee.zip
Refactor ScalaModule to simplify it and delay ivy resolution until the last moment
Diffstat (limited to 'main/test')
-rw-r--r--main/test/src/mill/util/TestEvaluator.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/test/src/mill/util/TestEvaluator.scala b/main/test/src/mill/util/TestEvaluator.scala
index a5be0488..285aa659 100644
--- a/main/test/src/mill/util/TestEvaluator.scala
+++ b/main/test/src/mill/util/TestEvaluator.scala
@@ -28,8 +28,8 @@ class TestEvaluator[T <: TestUtil.BaseModule](module: T)
tp: TestPath){
val outPath = TestUtil.getOutPath()
- val logger = DummyLogger
-// val logger = new PrintLogger(true, ammonite.util.Colors.Default, System.out, System.out, System.err)
+// val logger = DummyLogger
+ val logger = new PrintLogger(true, ammonite.util.Colors.Default, System.out, System.out, System.err)
val evaluator = new Evaluator(outPath, TestEvaluator.externalOutPath, module, discover, logger)
def apply[T](t: Task[T]): Either[Result.Failing[T], (T, Int)] = {