pulled kubeadm tests out of runTests to run before tests in test/cmd

Added timeout for https://github.com/kubernetes/kubeadm/issues/1430
This commit is contained in:
Thomas Runyon
2019-03-01 06:46:41 -05:00
parent a514fa042e
commit 1e44e33517
3 changed files with 22 additions and 2 deletions

View File

@@ -397,7 +397,10 @@ runTests() {
if [[ -n "${WHAT-}" ]]; then
for pkg in ${WHAT}
do
record_command run_${pkg}_tests
# running of kubeadm is captured in hack/make-targets/test-cmd.sh
if [[ "$pkg" != "kubeadm" ]]; then
record_command run_${pkg}_tests
fi
done
cleanup_tests
return