File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,15 @@ test-conformance() {
1818 echo " Running conformance tests against $( grep server: $KUBECONFIG ) "
1919 # We can't just mount $KUBECONFIG as a volume, because in CI this script is
2020 # also running in a docker container, and the mount will not work.
21+ # TODO: Once we move to k3s v1.34+, we can stop skipping
22+ # DynamicResourceAllocation, WatchList, and OrderedNamespaceDeletion tests
23+ # TODO: Once we move to k3s v1.32+, we can remove the E2E_SKIP for WatchListClient
2124 docker container run \
2225 --rm -d --name $name \
2326 --entrypoint /usr/bin/sh \
2427 -e " KUBECONFIG=/root/.kube/config" \
2528 -e " E2E_FOCUS=sig-api-machinery" \
26- -e " E2E_SKIP=StorageVersionAPI|Slow|Flaky" \
29+ -e " E2E_SKIP=StorageVersionAPI|Slow|Flaky|DynamicResourceAllocation|OrderedNamespaceDeletion|WatchList|WatchListClient " \
2730 -e " E2E_EXTRA_ARGS=--ginkgo.fail-fast" \
2831 registry.k8s.io/conformance:$version \
2932 -c ' mkdir -p /root/.kube; sleep 36000'
Original file line number Diff line number Diff line change @@ -212,6 +212,9 @@ provision-server() {
212212
213213 run-function server-pre-hook $count
214214
215+ # TODO: Once we move to testing with k3s v1.34+,
216+ # we can stop skipping DynamicResourceAllocation and OrderedNamespaceDeletion
217+ # tests in test-confomance script
215218 docker container run \
216219 -d --name $name \
217220 --privileged \
You can’t perform that action at this time.
0 commit comments