increase time for docker-env test

pull/8265/head
Medya Gh 2020-05-24 04:52:22 -07:00
parent 7b81e8068f
commit ed9950efc5
No known key found for this signature in database
GPG Key ID: 7CF7792C6DF3245C
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ func validateNodeLabels(ctx context.Context, t *testing.T, profile string) {
func validateDockerEnv(ctx context.Context, t *testing.T, profile string) {
defer PostMortemLogs(t, profile)
mctx, cancel := context.WithTimeout(ctx, Seconds(13))
mctx, cancel := context.WithTimeout(ctx, Minutes(1))
defer cancel()
// we should be able to get minikube status with a bash which evaled docker-env
c := exec.CommandContext(mctx, "/bin/bash", "-c", "eval $("+Target()+" -p "+profile+" docker-env) && "+Target()+" status -p "+profile)