From dfbef6178468c26c1bc2d1599dfbe5db0095e325 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Tue, 5 Nov 2019 16:15:09 +0100 Subject: [PATCH] Don't explicitly clean before testing (#210) This no longer appears to be necessary, and even causes problems on sbt 1.3. See also #209 --- build.sbt | 3 --- 1 file changed, 3 deletions(-) diff --git a/build.sbt b/build.sbt index 78567dc..767fc02 100644 --- a/build.sbt +++ b/build.sbt @@ -22,9 +22,6 @@ lazy val root = (project in file(".")) result }, test in Test := { - // since we are building for different Scala patch versions, a clean - // is required to avoid conflicts in class files - clean.value saveTestClasspath.value (test in Test).value },