Skip to content

Commit

Permalink
UPSTREAM: <carry>: Fix default skips in test-kubernetes-e2e.sh
Browse files Browse the repository at this point in the history
It was still skipping [Skipped:Network/OpenShiftSDN] even though the
tests use ovn-kubernetes now.

The only test that is currently marked [Skipped:Network/OVNKubernetes]
was also marked [Skipped:Network/OpenShiftSDN], which is why it still
worked, but this meant that we were skipping other tests that
_shouldn't_ have been skipped on ovn-k. (Of course, any problems that
resulted from this would be caught in other e2es later, so this wasn't
actually permanently masking any problems.)
  • Loading branch information
danwinship authored and bertinatto committed Nov 28, 2024
1 parent 19b6ea8 commit 36bc927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openshift-hack/test-kubernetes-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ esac
# openshift-tests will check the cluster's network configuration and
# automatically skip any incompatible tests. We have to do that manually
# here.
NETWORK_SKIPS="\[Skipped:Network/OpenShiftSDN\]|\[Feature:Networking-IPv6\]|\[Feature:IPv6DualStack.*\]|\[Feature:SCTPConnectivity\]"
NETWORK_SKIPS="\[Skipped:Network/OVNKubernetes\]|\[Feature:Networking-IPv6\]|\[Feature:IPv6DualStack.*\]|\[Feature:SCTPConnectivity\]"

# Support serial and parallel test suites
TEST_SUITE="${TEST_SUITE:-parallel}"
Expand Down

0 comments on commit 36bc927

Please sign in to comment.