Skip to content

Commit ccba42d

Browse files
committed
temporarily disable community build test cases known not to work until the projects are updated
1 parent fa5ab27 commit ccba42d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ object projects:
305305
// Some scalatest's tests are flaky (https://github.com/scalatest/scalatest/issues/2049)
306306
// so we disable them, this list is based on the one used in the Scala 2 community build
307307
// (https://github.com/scala/community-build/blob/2.13.x/proj/scalatest.conf).
308-
"""set scalatestTest / Test / unmanagedSources / excludeFilter := HiddenFileFilter || "GeneratorSpec.scala" || "FrameworkSuite.scala" || "WaitersSpec.scala" || "TestSortingReporterSpec.scala" || "JavaFuturesSpec.scala" || "ParallelTestExecutionSpec.scala" || "TimeLimitsSpec.scala" || "TestThreadsStartingCounterSpec.scala" || "SuiteSortingReporterSpec.scala" || "CommonGeneratorsSpec.scala" || "PropCheckerAssertingSpec.scala" || "ConductorMethodsSuite.scala"""",
308+
"""set scalatestTest / Test / unmanagedSources / excludeFilter := HiddenFileFilter || "GeneratorSpec.scala" || "FrameworkSuite.scala" || "WaitersSpec.scala" || "TestSortingReporterSpec.scala" || "JavaFuturesSpec.scala" || "ParallelTestExecutionSpec.scala" || "TimeLimitsSpec.scala" || "TestThreadsStartingCounterSpec.scala" || "SuiteSortingReporterSpec.scala" || "CommonGeneratorsSpec.scala" || "PropCheckerAssertingSpec.scala" || "ConductorMethodsSuite.scala" || "AssertionsSpec.scala" || "DirectAssertionsSpec.scala"""",
309309
"""set scalacticTest / Test / unmanagedSources / excludeFilter := HiddenFileFilter || "NonEmptyArraySpec.scala"""",
310310
"""set genRegularTests4 / Test / managedSources ~= (_.filterNot(_.getName == "FrameworkSuite.scala").filterNot(_.getName == "GeneratorSpec.scala").filterNot(_.getName == "CommonGeneratorsSpec.scala").filterNot(_.getName == "ParallelTestExecutionSpec.scala").filterNot(_.getName == "DispatchReporterSpec.scala").filterNot(_.getName == "TestThreadsStartingCounterSpec.scala").filterNot(_.getName == "EventuallySpec.scala"))""",
311311

@@ -439,7 +439,7 @@ object projects:
439439

440440
lazy val zio = SbtCommunityProject(
441441
project = "zio",
442-
sbtTestCommand = "testJVMDotty",
442+
sbtTestCommand = """set Global / testOptions += Tests.Filter(name => !name.endsWith("ZIOSpec") && !name.endsWith("ZLayerSpec")); testJVMDotty""",
443443
sbtDocCommand = forceDoc("coreJVM"),
444444
dependencies = () => List(izumiReflect)
445445
)
@@ -686,7 +686,7 @@ object projects:
686686

687687
lazy val izumiReflect = SbtCommunityProject(
688688
project = "izumi-reflect",
689-
sbtTestCommand = "test",
689+
sbtTestCommand = """set Global / testOptions += Tests.Filter(name => !name.endsWith("BasicDottyTest") && !name.endsWith("LightTypeTagTest")); test""",
690690
sbtPublishCommand = "publishLocal",
691691
dependencies = () => List(scalatest)
692692
)

0 commit comments

Comments
 (0)