Skip to content

Commit

Permalink
scripts lib: run original integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dshehbaj committed Dec 6, 2024
1 parent eff2ffb commit 03d0ec4
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions scripts/lib/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 03d0ec4

Please sign in to comment.