@@ -30,7 +30,7 @@ lazy val testNativeSettings: Seq[Setting[_]] = Seq(
30
30
// Required by Scala Native testing infrastructure
31
31
Test / fork := false ,
32
32
)
33
-
33
+
34
34
lazy val core = projectMatrix.in(file(" core" ))
35
35
.settings(commonSettings)
36
36
.settings(
@@ -49,7 +49,7 @@ lazy val junit = projectMatrix.in(file("junit"))
49
49
testOptions += Tests .Argument (TestFrameworks .JUnit , " -a" , " -v" ),
50
50
publish / skip := true ,
51
51
).dependsOn(testmacros, core)
52
- .jvmPlatform(matrixScalaVersions,
52
+ .jvmPlatform(matrixScalaVersions,
53
53
settings = Seq (
54
54
libraryDependencies += " com.github.sbt" % " junit-interface" % " 0.13.3" % Test ,
55
55
libraryDependencies += " junit" % " junit" % " 4.13.2" % Test ,
@@ -58,20 +58,20 @@ lazy val junit = projectMatrix.in(file("junit"))
58
58
Test / fork := true ,
59
59
)
60
60
)
61
- .nativePlatform(matrixScalaVersions,
61
+ .nativePlatform(matrixScalaVersions,
62
62
axisValues = Nil ,
63
63
configure = _
64
64
.enablePlugins(ScalaNativeJUnitPlugin )
65
65
.settings(
66
- Test / unmanagedSources/ excludeFilter ~= { _ ||
66
+ Test / unmanagedSources/ excludeFilter ~= { _ ||
67
67
" SerializationTest.scala" || // requires ObjectOutputStream
68
68
" SerializationStability.scala" || // requires jaxb-api
69
69
" SerializationStabilityBase.scala" ||
70
70
" SerializationStabilityTest.scala"
71
71
},
72
72
Test / fork := false
73
73
)
74
- )
74
+ )
75
75
76
76
lazy val scalacheck = projectMatrix.in(file(" scalacheck" ))
77
77
.settings(commonSettings)
@@ -109,7 +109,7 @@ commands += Command.single("setScalaVersion") { (state, arg) =>
109
109
}
110
110
111
111
import sbt .internal .{ProjectMatrix , ProjectFinder }
112
- def testPlatformCommand (name : String , selector : ProjectMatrix => ProjectFinder ): Command =
112
+ def testPlatformCommand (name : String , selector : ProjectMatrix => ProjectFinder ): Command =
113
113
Command .command(name) { state =>
114
114
List (junit, scalacheck, testmacros)
115
115
.flatMap(selector(_).get)
0 commit comments