@@ -100,7 +100,7 @@ config = {
100100 "apiLocks" ,
101101 ],
102102 "skip" : False ,
103- "k8s" : False ,
103+ "k8s" : True ,
104104 },
105105 "settingsAndNotification" : {
106106 "suites" : [
@@ -130,21 +130,21 @@ config = {
130130 ],
131131 "skip" : False ,
132132 "withRemotePhp" : [False ],
133- "k8s" : False ,
133+ "k8s" : True ,
134134 },
135135 "spaces" : {
136136 "suites" : [
137137 "apiSpaces" ,
138138 ],
139139 "skip" : False ,
140- "k8s" : False ,
140+ "k8s" : True ,
141141 },
142142 "spacesShares" : {
143143 "suites" : [
144144 "apiSpacesShares" ,
145145 ],
146146 "skip" : False ,
147- "k8s" : False ,
147+ "k8s" : True ,
148148 },
149149 "davOperations" : {
150150 "suites" : [
@@ -184,14 +184,14 @@ config = {
184184 ],
185185 "skip" : False ,
186186 "withRemotePhp" : [False ],
187- "k8s" : False ,
187+ "k8s" : True ,
188188 },
189189 "sharingNgAdditionalShareRole" : {
190190 "suites" : [
191191 "apiSharingNgAdditionalShareRole" ,
192192 ],
193193 "skip" : False ,
194- "k8s" : False ,
194+ "k8s" : True ,
195195 "withRemotePhp" : [False ],
196196 },
197197 "sharingNgShareInvitation" : {
@@ -307,7 +307,7 @@ config = {
307307 "coreApiShareManagementToShares" ,
308308 ],
309309 "skip" : False ,
310- "k8s" : False ,
310+ "k8s" : True ,
311311 "withRemotePhp" : [False ],
312312 },
313313 "3" : {
@@ -328,7 +328,7 @@ config = {
328328 "coreApiShareUpdateToShares" ,
329329 ],
330330 "skip" : False ,
331- "k8s" : False ,
331+ "k8s" : True ,
332332 "withRemotePhp" : [False ],
333333 },
334334 "5" : {
@@ -339,7 +339,7 @@ config = {
339339 "coreApiWebdavEtagPropagation2" ,
340340 ],
341341 "skip" : False ,
342- "k8s" : False ,
342+ "k8s" : True ,
343343 },
344344 "6" : {
345345 "suites" : [
@@ -354,7 +354,7 @@ config = {
354354 "coreApiWebdavProperties" ,
355355 ],
356356 "skip" : False ,
357- "k8s" : False ,
357+ "k8s" : True ,
358358 },
359359 "8" : {
360360 "suites" : [
@@ -1091,7 +1091,7 @@ def localApiTestPipeline(ctx):
10911091 params [item ] = matrix [item ] if item in matrix else defaults [item ]
10921092 for storage in params ["storages" ]:
10931093 for run_with_remote_php in params ["withRemotePhp" ]:
1094- run_on_k8s = params ["k8s" ] and ctx .build .event == "cron"
1094+ run_on_k8s = params ["k8s" ] # and ctx.build.event == "cron"
10951095 ocis_url = OCIS_URL
10961096 if run_on_k8s :
10971097 ocis_url = "https://%s" % OCIS_SERVER_NAME
@@ -1393,7 +1393,7 @@ def coreApiTestPipeline(ctx):
13931393 for run_with_remote_php in params ["withRemotePhp" ]:
13941394 filter_tags = "~@skipOnGraph&&~@skipOnOcis-%s-Storage" % ("OC" if storage == "owncloud" else "OCIS" )
13951395 expected_failures_file = "%s/expected-failures-API-on-%s-storage.md" % (test_dir , storage .upper ())
1396- run_on_k8s = params ["k8s" ] and ctx .build .event == "cron"
1396+ run_on_k8s = params ["k8s" ] # and ctx.build.event == "cron"
13971397 ocis_url = OCIS_URL
13981398 if run_on_k8s :
13991399 ocis_url = "https://%s" % OCIS_SERVER_NAME
0 commit comments