fixed deprecated ginkgo flags (#8984)
This commit is contained in:
parent
26bc6e4e50
commit
c6b70ec349
1 changed files with 5 additions and 5 deletions
|
@ -19,17 +19,17 @@ set -e
|
||||||
NC='\e[0m'
|
NC='\e[0m'
|
||||||
BGREEN='\e[32m'
|
BGREEN='\e[32m'
|
||||||
|
|
||||||
SLOW_E2E_THRESHOLD=${SLOW_E2E_THRESHOLD:-5}
|
SLOW_E2E_THRESHOLD=${SLOW_E2E_THRESHOLD:-"5s"}
|
||||||
FOCUS=${FOCUS:-.*}
|
FOCUS=${FOCUS:-.*}
|
||||||
E2E_NODES=${E2E_NODES:-5}
|
E2E_NODES=${E2E_NODES:-5}
|
||||||
E2E_CHECK_LEAKS=${E2E_CHECK_LEAKS:-""}
|
E2E_CHECK_LEAKS=${E2E_CHECK_LEAKS:-""}
|
||||||
|
|
||||||
ginkgo_args=(
|
ginkgo_args=(
|
||||||
"-randomizeAllSpecs"
|
"-randomize-all"
|
||||||
"-flakeAttempts=2"
|
"-flake-attempts=2"
|
||||||
"-failFast"
|
"-fail-fast"
|
||||||
"-progress"
|
"-progress"
|
||||||
"-slowSpecThreshold=${SLOW_E2E_THRESHOLD}"
|
"-slow-spec-threshold=${SLOW_E2E_THRESHOLD}"
|
||||||
"-succinct"
|
"-succinct"
|
||||||
"-timeout=75m"
|
"-timeout=75m"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue