diff --git a/scripts/lib/integration.sh b/scripts/lib/integration.sh index b1d6b7c885..35bec3826c 100644 --- a/scripts/lib/integration.sh +++ b/scripts/lib/integration.sh @@ -55,15 +55,13 @@ function run_kops_conformance() { # Run the focused set of tests with detailed logging TEST_START=$SECONDS set -o pipefail # Ensure we catch test failures - /tmp/e2e.test --ginkgo.focus="\[sig-network.*Conformance\]" \ - --ginkgo.skip="(works for CRD with validation schema)|(ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer)|(should support remote command execution over websockets)|(should support retrieving logs from the container over websockets)|(Basic StatefulSet functionality [StatefulSetBasic])|\[Slow\]|\[Serial\]" \ - --ginkgo.v \ - --kubeconfig=$KUBECONFIG \ - --ginkgo.timeout=45m \ - --ginkgo.trace \ - --ginkgo.flake-attempts 5 \ - --node-os-distro=ubuntu \ - 2>&1 | tee /tmp/e2e-test.log + + /tmp/e2e.test --ginkgo.focus="Conformance" --ginkgo.timeout=120m --kubeconfig=$KUBECONFIG --ginkgo.v --ginkgo.trace --ginkgo.flake-attempts 8 \ + --ginkgo.skip="(works for CRD with validation schema)|(ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer)|(should support remote command execution over websockets)|(should support retrieving logs from the container over websockets)|(Basic StatefulSet functionality [StatefulSetBasic])|\[Slow\]|\[Serial\]" + + /tmp/e2e.test --ginkgo.focus="\[Serial\].*Conformance" --ginkgo.timeout=120m --kubeconfig=$KUBECONFIG --ginkgo.v --ginkgo.trace --ginkgo.flake-attempts 8 \ + --ginkgo.skip="(ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer)|(should support remote command execution over websockets)|(should support retrieving logs from the container over websockets)|\[Slow\]" + echo "Kops conformance tests ran successfully!" TEST_EXIT_CODE=$? TEST_DURATION=$((SECONDS - TEST_START))