Skip to content

Commit a864589

Browse files
committed
Don't test beta but off feature gates
Signed-off-by: Derek Nola <[email protected]>
1 parent f27f1ca commit a864589

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

scripts/test-conformance

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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'

scripts/test-helpers

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 \

0 commit comments

Comments
 (0)