Skip to content

Commit 4c3504d

Browse files
committed
Don't override test forking
* build.sbt (fork): Test forking is already enabled by sbt scala module plugin.
1 parent d1f54f3 commit 4c3504d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

build.sbt

+1-5
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@ lazy val xml = crossProject.in(file("."))
3434
libraryDependencies += "junit" % "junit" % "4.11" % "test",
3535
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test",
3636
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaVersion.value}"),
37-
mimaPreviousVersion := Some("1.0.6"),
38-
// You cannot disable JVM test forking when working on scala modules
39-
// that are distributed with the compiler because of an SBT
40-
// classloader leaking issue (scala/scala-xml#20 and #112).
41-
fork in Test := true): _*)
37+
mimaPreviousVersion := Some("1.0.6")): _*)
4238
.jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin))
4339

4440
lazy val xmlJVM = xml.jvm

0 commit comments

Comments
 (0)