diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 7c991da592..1c6e337fc4 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -121,7 +121,7 @@ func TestFunctional(t *testing.T) { {"PersistentVolumeClaim", validatePersistentVolumeClaim}, {"TunnelCmd", validateTunnelCmd}, {"SSHCmd", validateSSHCmd}, - {"MySQL", validateMySQL}, + //{"MySQL", validateMySQL}, {"FileSync", validateFileSync}, {"CertSync", validateCertSync}, {"UpdateContextCmd", validateUpdateContextCmd}, @@ -223,7 +223,7 @@ func validateStartWithProxy(ctx context.Context, t *testing.T, profile string) { // Use more memory so that we may reliably fit MySQL and nginx // changing api server so later in soft start we verify it didn't change - startArgs := append([]string{"start", "-p", profile, "--memory=4000", "--cpus=4", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...) + startArgs := append([]string{"start", "-p", profile, "--memory=4000", fmt.Sprintf("--apiserver-port=%d", apiPortTest), "--wait=true"}, StartArgs()...) c := exec.CommandContext(ctx, Target(), startArgs...) env := os.Environ() env = append(env, fmt.Sprintf("HTTP_PROXY=%s", srv.Addr))