Skip to content

Commit

Permalink
Do not require --test_args to be set
Browse files Browse the repository at this point in the history
  • Loading branch information
fejta committed Aug 10, 2016
1 parent f2d9aab commit 8ca5759
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hack/jenkins/e2e-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,10 @@ if [[ "${E2E_DOWN,,}" == "true" ]]; then
fi

if [[ "${E2E_TEST,,}" == "true" ]]; then
e2e_go_args+=(--test --test_args="${GINKGO_TEST_ARGS}")
e2e_go_args+=(--test)
if [[ -n "${GINKGO_TEST_ARGS:-}" ]]; then
e2e_go_args+=(--test_args="${GINKGO_TEST_ARGS}")
fi
fi

# Optionally run tests from the version in kubernetes_skew
Expand Down

0 comments on commit 8ca5759

Please sign in to comment.