@@ -7,8 +7,7 @@ import org.junit.{Ignore, Test}
7
7
import org .junit .Assert .{assertEquals , fail }
8
8
import org .junit .experimental .categories .Category
9
9
10
- @ Category (Array (classOf [TestCategory ]))
11
- class CommunityBuildTest :
10
+ abstract class CommunityBuildTest :
12
11
given CommunityBuildTest = this
13
12
14
13
/** Depending on the mode of operation, either
@@ -79,7 +78,30 @@ class CommunityBuildTest:
79
78
| """ .stripMargin)
80
79
}
81
80
}
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
82
102
103
+ @ Category (Array (classOf [TestCategory ]))
104
+ class CommunityBuildTestB extends CommunityBuildTest :
83
105
@ Test def algebra = projects.algebra.run()
84
106
@ Test def betterfiles = projects.betterfiles.run()
85
107
@ Test def catsEffect2 = projects.catsEffect2.run()
@@ -88,38 +110,22 @@ class CommunityBuildTest:
88
110
// @Test def dottyCpsAsync = projects.dottyCpsAsync.run()
89
111
@ Test def effpi = projects.effpi.run()
90
112
@ 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()
94
113
@ Test def intent = projects.intent.run()
95
114
@ Test def minitest = projects.minitest.run()
96
115
@ 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()
102
116
@ Test def scalap = projects.scalap.run()
103
117
@ Test def scalaParserCombinators = projects.scalaParserCombinators.run()
104
118
@ Test def ScalaPB = projects.ScalaPB .run()
105
- @ Test def scalatest = projects.scalatest.run()
106
- @ Test def scalatestplusScalacheck = projects.scalatestplusScalacheck.run()
107
119
@ Test def scalaXml = projects.scalaXml.run()
108
120
@ Test def scalaz = projects.scalaz.run()
109
121
@ Test def scas = projects.scas.run()
110
- @ Test def scodec = projects.scodec.run()
111
- @ Test def scodecBits = projects.scodecBits.run()
112
122
@ Test def sconfig = projects.sconfig.run()
113
123
@ Test def scopt = projects.scopt.run()
114
124
@ Test def shapeless = projects.shapeless.run()
115
- @ Test def sourcecode = projects.sourcecode.run()
116
125
@ Test def squants = projects.squants.run()
117
126
@ 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()
121
127
@ Test def xmlInterpolator = projects.xmlInterpolator.run()
122
128
@ Test def zio = projects.zio.run()
123
- end CommunityBuildTest
129
+ end CommunityBuildTestB
124
130
125
131
class TestCategory
0 commit comments