Skip to content

Commit

Permalink
Exclude flakty tests from fs2 in community-build
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Nov 7, 2024
1 parent d8ba366 commit 0196fd8
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,13 @@ object projects:

lazy val fs2 = SbtCommunityProject(
project = "fs2",
sbtTestCommand = "coreJVM/test; coreJS/test", // io/test requires JDK9+
sbtTestCommand = List(
// Exclude flaky tests
"""set core.jvm / Test / managedSources ~= { _.filterNot(_.getName == "BracketSuite.scala") }""",
"""set core.js / Test / managedSources ~= { _.filterNot(_.getName == "BracketSuite.scala") }""",
"coreJVM/test", // io/test requires JDK9+
"coreJS/test"
).mkString("; "),
sbtPublishCommand = "coreJVM/publishLocal; coreJS/publishLocal",
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Wsafe-init"),
dependencies = List(cats, catsEffect3, munitCatsEffect, scalacheckEffect, scodecBits)
Expand Down

0 comments on commit 0196fd8

Please sign in to comment.