Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Enable tests for scala native
  • Loading branch information
Philippus committed Feb 3, 2022
commit 063ebb34819eb3c20bf084c0cbc04212aaad53a0
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
.nativeSettings(
versionPolicyCheck / skip := true,
versionCheck / skip := true,
test := {}
Test / fork := false,
libraryDependencies :=
libraryDependencies.value.filterNot(_.organization == "junit") :+ "org.scala-native" %%% "junit-runtime" % "0.4.3",
addCompilerPlugin("org.scala-native" % "junit-plugin" % "0.4.3" cross CrossVersion.full)
)

lazy val parserCombinatorsJVM = parserCombinators.jvm
Expand Down