Skip to content

Commit

Permalink
Merge pull request #2767 from mpilquist/topic/fix-mem-leak-tests
Browse files Browse the repository at this point in the history
Disable tracing in memory leak tests
  • Loading branch information
mpilquist authored Dec 24, 2021
2 parents 2e0481a + 6466dee commit 5d0ceee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
.configs(IntegrationTest)
.settings(Defaults.itSettings: _*)
.settings(
inConfig(IntegrationTest)(org.scalafmt.sbt.ScalafmtPlugin.scalafmtConfigSettings)
inConfig(IntegrationTest)(
org.scalafmt.sbt.ScalafmtPlugin.scalafmtConfigSettings ++ List(
Test / javaOptions += "-Dcats.effect.tracing.mode=none"
)
)
)
.settings(
name := "fs2-core",
Expand Down

0 comments on commit 5d0ceee

Please sign in to comment.