Skip to content

Commit bf26956

Browse files
authored
Skip Static Canary in run-integration-test in Github. (#2935)
1 parent c8a2944 commit bf26956

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/run-integration-tests.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,9 @@ if [[ $RUN_CNI_INTEGRATION_TESTS == true ]]; then
231231
echo ""
232232
START=$SECONDS
233233
focus="CANARY"
234+
skip="STATIC_CANARY"
234235
echo "Running ginkgo tests with focus: $focus"
235-
(cd "$INTEGRATION_TEST_DIR/cni" && CGO_ENABLED=0 ginkgo --focus="$focus" -v --timeout 60m --no-color --fail-on-pending -- --cluster-kubeconfig="$KUBECONFIG" --cluster-name="$CLUSTER_NAME" --aws-region="$AWS_DEFAULT_REGION" --aws-vpc-id="$VPC_ID" --ng-name-label-key="kubernetes.io/os" --ng-name-label-val="linux")
236+
(cd "$INTEGRATION_TEST_DIR/cni" && CGO_ENABLED=0 ginkgo --focus="$focus" --skip="$skip" -v --timeout 60m --no-color --fail-on-pending -- --cluster-kubeconfig="$KUBECONFIG" --cluster-name="$CLUSTER_NAME" --aws-region="$AWS_DEFAULT_REGION" --aws-vpc-id="$VPC_ID" --ng-name-label-key="kubernetes.io/os" --ng-name-label-val="linux")
236237
(cd "$INTEGRATION_TEST_DIR/ipamd" && CGO_ENABLED=0 ginkgo --focus="$focus" -v --timeout 60m --no-color --fail-on-pending -- --cluster-kubeconfig="$KUBECONFIG" --cluster-name="$CLUSTER_NAME" --aws-region="$AWS_DEFAULT_REGION" --aws-vpc-id="$VPC_ID" --ng-name-label-key="kubernetes.io/os" --ng-name-label-val="linux")
237238
TEST_PASS=$?
238239
CURRENT_IMAGE_INTEGRATION_DURATION=$((SECONDS - START))

0 commit comments

Comments
 (0)