Skip to content

Commit

Permalink
Merge pull request #605 from typelevel/topic/fix-skunk-test-logs
Browse files Browse the repository at this point in the history
Fix SLF4J warnings for skunk tests
  • Loading branch information
milessabin authored Apr 29, 2024
2 parents ff67b2a + c7de28c commit 6530762
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,16 @@ lazy val skunk = crossProject(JVMPlatform, JSPlatform, NativePlatform)
name := "grackle-skunk",
Test / parallelExecution := false,
libraryDependencies ++= Seq(
"org.tpolecat" %%% "skunk-core" % skunkVersion,
"org.tpolecat" %%% "skunk-circe" % skunkVersion,
"org.tpolecat" %%% "skunk-core" % skunkVersion,
"org.tpolecat" %%% "skunk-circe" % skunkVersion,
"org.typelevel" %% "log4cats-core" % log4catsVersion
)
)
.jvmSettings(
Test / fork := true
Test / fork := true,
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % logbackVersion % "test"
)
)
.jsSettings(
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule))
Expand Down

0 comments on commit 6530762

Please sign in to comment.