@@ -305,7 +305,7 @@ object projects:
305
305
// Some scalatest's tests are flaky (https://github.com/scalatest/scalatest/issues/2049)
306
306
// so we disable them, this list is based on the one used in the Scala 2 community build
307
307
// (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" """ ,
309
309
""" set scalacticTest / Test / unmanagedSources / excludeFilter := HiddenFileFilter || "NonEmptyArraySpec.scala"""" ,
310
310
""" 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"))""" ,
311
311
@@ -439,7 +439,7 @@ object projects:
439
439
440
440
lazy val zio = SbtCommunityProject (
441
441
project = " zio" ,
442
- sbtTestCommand = " testJVMDotty" ,
442
+ sbtTestCommand = """ set Global / testOptions += Tests.Filter(name => !name.endsWith("ZIOSpec") && !name.endsWith("ZLayerSpec")); testJVMDotty"" " ,
443
443
sbtDocCommand = forceDoc(" coreJVM" ),
444
444
dependencies = () => List (izumiReflect)
445
445
)
@@ -686,7 +686,7 @@ object projects:
686
686
687
687
lazy val izumiReflect = SbtCommunityProject (
688
688
project = " izumi-reflect" ,
689
- sbtTestCommand = " test" ,
689
+ sbtTestCommand = """ set Global / testOptions += Tests.Filter(name => !name.endsWith("BasicDottyTest") && !name.endsWith("LightTypeTagTest")); test"" " ,
690
690
sbtPublishCommand = " publishLocal" ,
691
691
dependencies = () => List (scalatest)
692
692
)
0 commit comments