Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip tests due to GKE version constraints #3526

Merged
merged 1 commit into from
May 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,8 @@ func TestAccContainerCluster_withVersion(t *testing.T) {
}

func TestAccContainerCluster_updateVersion(t *testing.T) {
// TODO re-enable this test when GKE supports multiple versions concurrently
t.Skip("Only a single GKE version is supported currently by the API, this test cannot pass")
t.Parallel()

clusterName := fmt.Sprintf("tf-test-cluster-%s", randString(t, 10))
Expand Down Expand Up @@ -948,6 +950,8 @@ func TestAccContainerCluster_withNodePoolBasic(t *testing.T) {
}

func TestAccContainerCluster_withNodePoolUpdateVersion(t *testing.T) {
// TODO re-enable this test when GKE supports multiple versions concurrently
t.Skip("Only a single GKE version is supported currently by the API, this test cannot pass")
t.Parallel()

clusterName := fmt.Sprintf("tf-test-cluster-nodepool-%s", randString(t, 10))
Expand Down