Skip to content

Commit 0730dba

Browse files
committed
SIG testing: disable serial tests in canary
Ginkgo now has support for scheduling slow tests sooner in a parallel run. To see the effect of that we need a CI job which includes slow tests. The canary job is right for that, but including serial tests affects the overall runtime too much at the moment. Let's disable them, experiment with prioritization of slow jobs, then come back to serial later.
1 parent d2d4e54 commit 0730dba

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

config/jobs/kubernetes/sig-testing/kubernetes-kind-ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ periodics:
303303
annotations:
304304
testgrid-dashboards: sig-testing-kind
305305
testgrid-tab-name: kind-master-alpha-beta-features-canary
306-
description: Runs tests with no special requirements other than alpha or beta feature gates in a KinD cluster where alpha and beta feature gates and APIs are enabled. In contrast to ci-kubernetes-e2e-kind-alpha-beta-features it really runs all such tests, with flaky tests being the only exception.
306+
description: Runs tests with no special requirements other than alpha or beta feature gates in a KinD cluster where alpha and beta feature gates and APIs are enabled. In contrast to ci-kubernetes-e2e-kind-alpha-beta-features it really runs all such tests, with serial and flaky tests being the only exceptions.
307307
testgrid-alert-email: [email protected]
308308
testgrid-num-columns-recent: '6'
309309
labels:
@@ -334,7 +334,10 @@ periodics:
334334
- name: LABEL_FILTER
335335
# Full coverage. The only exception are known flaky tests
336336
# and deprecated features because those don't get enabled by AllAlpha/Beta.
337-
value: "Feature: isSubsetOf OffByDefault && !Deprecated && !Flaky"
337+
#
338+
# Serial tests get disabled temporarily to make it more comparable with ci-kubernetes-e2e-kind-alpha-beta-features
339+
# (https://github.com/onsi/ginkgo/issues/1599#issuecomment-3441247598) and could be enabled again later.
340+
value: "Feature: isSubsetOf OffByDefault && !Deprecated && !Flaky && !Serial"
338341
- name: PARALLEL
339342
value: "true"
340343
# we need privileged mode in order to do docker in docker

0 commit comments

Comments
 (0)