@@ -279,7 +279,7 @@ object projects:
279
279
// Some scalatest's tests are flaky (https://github.com/scalatest/scalatest/issues/2049)
280
280
// so we disable them, this list is based on the one used in the Scala 2 community build
281
281
// (https://github.com/scala/community-build/blob/2.13.x/proj/scalatest.conf).
282
- """ set scalatestTestDotty / Test / managedSources ~= (_.filterNot(_.getName == "GeneratorSpec.scala").filterNot(_.getName == "FrameworkSuite.scala").filterNot(_.getName == "WaitersSpec.scala").filterNot(_.getName == "TestSortingReporterSpec.scala").filterNot(_.getName == "JavaFuturesSpec.scala").filterNot(_.getName == "ParallelTestExecutionSpec.scala").filterNot(_.getName == "TimeLimitsSpec.scala").filterNot(_.getName == "DispatchReporterSpec.scala").filterNot(_.getName == "TestThreadsStartingCounterSpec.scala").filterNot(_.getName == "SuiteSortingReporterSpec.scala").filterNot(_.getName == "CommonGeneratorsSpec.scala").filterNot(_.getName == "PropCheckerAssertingSpec.scala").filterNot(_.getName == "ConductorMethodsSuite.scala").filterNot(_.getName == "EventuallySpec.scala"))""" ,
282
+ """ set scalatestTestDotty / Test / managedSources ~= (_.filterNot(_.getName == "GeneratorSpec.scala").filterNot(_.getName == "FrameworkSuite.scala").filterNot(_.getName == "WaitersSpec.scala").filterNot(_.getName == "TestSortingReporterSpec.scala").filterNot(_.getName == "JavaFuturesSpec.scala").filterNot(_.getName == "ParallelTestExecutionSpec.scala").filterNot(_.getName == "TimeLimitsSpec.scala").filterNot(_.getName == "DispatchReporterSpec.scala").filterNot(_.getName == "TestThreadsStartingCounterSpec.scala").filterNot(_.getName == "SuiteSortingReporterSpec.scala").filterNot(_.getName == "CommonGeneratorsSpec.scala").filterNot(_.getName == "PropCheckerAssertingSpec.scala").filterNot(_.getName == "ConductorMethodsSuite.scala").filterNot(_.getName == "EventuallySpec.scala").filterNot(_.getName == "AssertionsSpec.scala").filterNot(_.getName == "DirectAssertionsSpec.scala") )""" ,
283
283
""" set scalacticTestDotty / Test / managedSources ~= (_.filterNot(_.getName == "NonEmptyArraySpec.scala"))""" ,
284
284
""" 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"))""" ,
285
285
" scalacticTestDotty/test; scalatestTestDotty/test; scalacticDottyJS/compile; scalatestDottyJS/compile"
@@ -413,7 +413,7 @@ object projects:
413
413
414
414
lazy val zio = SbtCommunityProject (
415
415
project = " zio" ,
416
- sbtTestCommand = " testJVMDotty" ,
416
+ sbtTestCommand = """ set Global / testOptions += Tests.Filter(name => !name.endsWith("ZIOSpec") && !name.endsWith("ZLayerSpec")); testJVMDotty"" " ,
417
417
sbtDocCommand = forceDoc(" coreJVM" ),
418
418
scalacOptions = SbtCommunityProject .scalacOptions.filter(_ != " -Xcheck-macros" ),
419
419
dependencies = List (izumiReflect)
@@ -645,7 +645,7 @@ object projects:
645
645
646
646
lazy val izumiReflect = SbtCommunityProject (
647
647
project = " izumi-reflect" ,
648
- sbtTestCommand = " test" ,
648
+ sbtTestCommand = """ set Global / testOptions += Tests.Filter(name => !name.endsWith("BasicDottyTest") && !name.endsWith("LightTypeTagTest")); test"" " ,
649
649
sbtPublishCommand = " publishLocal" ,
650
650
dependencies = List (scalatest)
651
651
)
0 commit comments