@@ -7,8 +7,7 @@ import org.junit.{Ignore, Test}
77import org .junit .Assert .{assertEquals , fail }
88import org .junit .experimental .categories .Category
99
10- @ Category (Array (classOf [TestCategory ]))
11- class CommunityBuildTest :
10+ abstract class CommunityBuildTest :
1211 given CommunityBuildTest = this
1312
1413 /** Depending on the mode of operation, either
@@ -79,7 +78,30 @@ class CommunityBuildTest:
7978 | """ .stripMargin)
8079 }
8180 }
81+ end CommunityBuildTest
82+
83+ @ Category (Array (classOf [TestCategory ]))
84+ class CommunityBuildTestA extends CommunityBuildTest :
85+ @ Test def fansi = projects.fansi.run()
86+ @ Test def fastparse = projects.fastparse.run()
87+ @ Test def geny = projects.geny.run()
88+ @ Test def oslib = projects.oslib.run()
89+ // @Test def oslibWatch = projects.oslibWatch.run()
90+ @ Test def pprint = projects.pprint.run()
91+ @ Test def requests = projects.requests.run()
92+ @ Test def scalacheck = projects.scalacheck.run()
93+ @ Test def scalatest = projects.scalatest.run()
94+ @ Test def scalatestplusScalacheck = projects.scalatestplusScalacheck.run()
95+ @ Test def sourcecode = projects.sourcecode.run()
96+ @ Test def scodec = projects.scodec.run()
97+ @ Test def scodecBits = projects.scodecBits.run()
98+ @ Test def ujson = projects.ujson.run()
99+ @ Test def upickle = projects.upickle.run()
100+ @ Test def utest = projects.utest.run()
101+ end CommunityBuildTestA
82102
103+ @ Category (Array (classOf [TestCategory ]))
104+ class CommunityBuildTestB extends CommunityBuildTest :
83105 @ Test def algebra = projects.algebra.run()
84106 @ Test def betterfiles = projects.betterfiles.run()
85107 @ Test def catsEffect2 = projects.catsEffect2.run()
@@ -88,38 +110,22 @@ class CommunityBuildTest:
88110 // @Test def dottyCpsAsync = projects.dottyCpsAsync.run()
89111 @ Test def effpi = projects.effpi.run()
90112 @ Test def endpoints4s = projects.endpoints4s.run()
91- @ Test def fansi = projects.fansi.run()
92- @ Test def fastparse = projects.fastparse.run()
93- @ Test def geny = projects.geny.run()
94113 @ Test def intent = projects.intent.run()
95114 @ Test def minitest = projects.minitest.run()
96115 @ Test def munit = projects.munit.run()
97- @ Test def oslib = projects.oslib.run()
98- // @Test def oslibWatch = projects.oslibWatch.run()
99- @ Test def pprint = projects.pprint.run()
100- @ Test def requests = projects.requests.run()
101- @ Test def scalacheck = projects.scalacheck.run()
102116 @ Test def scalap = projects.scalap.run()
103117 @ Test def scalaParserCombinators = projects.scalaParserCombinators.run()
104118 @ Test def ScalaPB = projects.ScalaPB .run()
105- @ Test def scalatest = projects.scalatest.run()
106- @ Test def scalatestplusScalacheck = projects.scalatestplusScalacheck.run()
107119 @ Test def scalaXml = projects.scalaXml.run()
108120 @ Test def scalaz = projects.scalaz.run()
109121 @ Test def scas = projects.scas.run()
110- @ Test def scodec = projects.scodec.run()
111- @ Test def scodecBits = projects.scodecBits.run()
112122 @ Test def sconfig = projects.sconfig.run()
113123 @ Test def scopt = projects.scopt.run()
114124 @ Test def shapeless = projects.shapeless.run()
115- @ Test def sourcecode = projects.sourcecode.run()
116125 @ Test def squants = projects.squants.run()
117126 @ Test def stdLib213 = projects.stdLib213.run()
118- @ Test def ujson = projects.ujson.run()
119- @ Test def upickle = projects.upickle.run()
120- @ Test def utest = projects.utest.run()
121127 @ Test def xmlInterpolator = projects.xmlInterpolator.run()
122128 @ Test def zio = projects.zio.run()
123- end CommunityBuildTest
129+ end CommunityBuildTestB
124130
125131class TestCategory
0 commit comments