Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
test: update kubernetes e2e to use GINKGO_FAIL_FAST parameter value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
haofan-ms authored Aug 24, 2020
1 parent 28f403f commit 0441db3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/e2e/cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ MASTER_VM_UPGRADE_SKU="${MASTER_VM_UPGRADE_SKU:-Standard_D4_v3}"
AZURE_ENV="${AZURE_ENV:-AzurePublicCloud}"
IDENTITY_SYSTEM="${IDENTITY_SYSTEM:-azure_ad}"
ARC_LOCATION="eastus"
GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST:-false}"
mkdir -p _output || exit 1

# Assumes we're running from the git root of aks-engine
Expand Down Expand Up @@ -115,7 +116,7 @@ docker run --rm \
-e CUSTOM_KUBE_PROXY_IMAGE="${CUSTOM_KUBE_PROXY_IMAGE}" \
-e IS_JENKINS="${IS_JENKINS}" \
-e SKIP_TEST="${SKIP_TESTS}" \
-e GINKGO_FAIL_FAST=true \
-e GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST}" \
-e GINKGO_FOCUS="${GINKGO_FOCUS}" \
-e GINKGO_SKIP="${GINKGO_SKIP}" \
-e API_PROFILE="${API_PROFILE}" \
Expand Down Expand Up @@ -243,7 +244,7 @@ if [ -n "$ADD_NODE_POOL_INPUT" ]; then
-e REGIONS=$REGION \
-e IS_JENKINS=${IS_JENKINS} \
-e SKIP_LOGS_COLLECTION=true \
-e GINKGO_FAIL_FAST=true \
-e GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST}" \
-e GINKGO_SKIP="${SKIP_AFTER_SCALE_DOWN}" \
-e GINKGO_FOCUS="${GINKGO_FOCUS}" \
-e SKIP_TEST=${SKIP_TESTS_AFTER_ADD_POOL} \
Expand Down Expand Up @@ -317,7 +318,7 @@ if [ "${SCALE_CLUSTER}" = "true" ]; then
-e REGIONS=$REGION \
-e IS_JENKINS=${IS_JENKINS} \
-e SKIP_LOGS_COLLECTION=true \
-e GINKGO_FAIL_FAST=true \
-e GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST}" \
-e GINKGO_SKIP="${SKIP_AFTER_SCALE_DOWN}" \
-e GINKGO_FOCUS="${GINKGO_FOCUS}" \
-e SKIP_TEST=${SKIP_TESTS_AFTER_SCALE_DOWN} \
Expand Down Expand Up @@ -403,7 +404,7 @@ if [ "${UPGRADE_CLUSTER}" = "true" ]; then
-e REGIONS=$REGION \
-e IS_JENKINS=${IS_JENKINS} \
-e SKIP_LOGS_COLLECTION=${SKIP_LOGS_COLLECTION} \
-e GINKGO_FAIL_FAST=true \
-e GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST}" \
-e GINKGO_SKIP="${SKIP_AFTER_UPGRADE}" \
-e GINKGO_FOCUS="${GINKGO_FOCUS}" \
-e SKIP_TEST=${SKIP_TESTS_AFTER_UPGRADE} \
Expand Down Expand Up @@ -478,7 +479,7 @@ if [ "${SCALE_CLUSTER}" = "true" ]; then
-e REGIONS=$REGION \
-e IS_JENKINS=${IS_JENKINS} \
-e SKIP_LOGS_COLLECTION=${SKIP_LOGS_COLLECTION} \
-e GINKGO_FAIL_FAST=true \
-e GINKGO_FAIL_FAST="${GINKGO_FAIL_FAST}" \
-e GINKGO_SKIP="${SKIP_AFTER_SCALE_UP}" \
-e GINKGO_FOCUS="${GINKGO_FOCUS}" \
-e SKIP_TEST=${SKIP_TESTS_AFTER_SCALE_UP} \
Expand Down

0 comments on commit 0441db3

Please sign in to comment.