ginkgo-e2e.sh: remove deprecated --slow-spec-threshold

From the warning message that ginkgo now emits:

  --slow-spec-threshold is deprecated --slow-spec-threshold has been deprecated
  and will be removed in a future version of Ginkgo.  This feature has proved
  to be more noisy than useful.  You can use --poll-progress-after, instead, to
  get more actionable feedback about potentially slow specs and understand
  where they might be getting stuck.

We already use --poll-progress-after.
This commit is contained in:
Patrick Ohly 2022-12-16 10:31:21 +01:00
parent 766e7e07da
commit 1c66b708ec

View File

@ -134,7 +134,6 @@ fi
# Some arguments (like --nodes) are only supported when using the CLI.
# Those get set below when choosing the program.
ginkgo_args=(
"--slow-spec-threshold=${GINKGO_SLOW_SPEC_THRESHOLD:-300s}"
"--poll-progress-after=${GINKGO_POLL_PROGRESS_AFTER:-300s}"
"--poll-progress-interval=${GINKGO_POLL_PROGRESS_INTERVAL:-20s}"
"--source-root=${KUBE_ROOT}"