move component health to serial

pull/8432/head
Medya Gh 2020-06-09 19:27:47 -07:00
parent 5249b6bfc2
commit b1412d5319
2 changed files with 3 additions and 1 deletions

View File

@ -174,6 +174,8 @@ jobs:
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.18.0/bin/darwin/amd64/kubectl
sudo install kubectl /usr/local/bin/kubectl
kubectl version --client=true
which bash
echo $(which bash)
- name: Install gopogh
shell: bash
run: |

View File

@ -86,6 +86,7 @@ func TestFunctional(t *testing.T) {
{"KubectlGetPods", validateKubectlGetPods}, // Make sure apiserver is up
{"CacheCmd", validateCacheCmd}, // Caches images needed for subsequent tests because of proxy
{"MinikubeKubectlCmd", validateMinikubeKubectl}, // Make sure `minikube kubectl` works
{"ComponentHealth", validateComponentHealth},
{"DockerEnv", validateDockerEnv},
}
for _, tc := range tests {
@ -105,7 +106,6 @@ func TestFunctional(t *testing.T) {
name string
validator validateFunc
}{
{"ComponentHealth", validateComponentHealth},
{"ConfigCmd", validateConfigCmd},
{"DashboardCmd", validateDashboardCmd},
{"DNS", validateDNS},