File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ config = {
153153 "apiActivities" ,
154154 ],
155155 "skip" : False ,
156+ "k8s" : True ,
156157 },
157158 "groupAndSearch1" : {
158159 "suites" : [
@@ -1087,7 +1088,7 @@ def localApiTestPipeline(ctx):
10871088 params [item ] = matrix [item ] if item in matrix else defaults [item ]
10881089 for storage in params ["storages" ]:
10891090 for run_with_remote_php in params ["withRemotePhp" ]:
1090- run_on_k8s = params ["k8s" ] and ctx . build . event == "cron"
1091+ run_on_k8s = params ["k8s" ]
10911092 ocis_url = OCIS_URL
10921093 if run_on_k8s :
10931094 ocis_url = "https://%s" % OCIS_SERVER_NAME
@@ -1389,7 +1390,7 @@ def coreApiTestPipeline(ctx):
13891390 for run_with_remote_php in params ["withRemotePhp" ]:
13901391 filter_tags = "~@skipOnGraph&&~@skipOnOcis-%s-Storage" % ("OC" if storage == "owncloud" else "OCIS" )
13911392 expected_failures_file = "%s/expected-failures-API-on-%s-storage.md" % (test_dir , storage .upper ())
1392- run_on_k8s = params ["k8s" ] and ctx . build . event == "cron"
1393+ run_on_k8s = params ["k8s" ]
13931394 ocis_url = OCIS_URL
13941395 if run_on_k8s :
13951396 ocis_url = "https://%s" % OCIS_SERVER_NAME
You can’t perform that action at this time.
0 commit comments