Skip to content

Commit

Permalink
swap to t.Skip instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
nat-henderson committed May 11, 2020
1 parent 79d1ce4 commit 07d9536
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -568,12 +568,14 @@ func TestAccContainerNodePool_resize(t *testing.T) {
})
}

<%# Re-enable this test when there is more than one acceptable node pool version
for the current master version.

func TestAccContainerNodePool_version(t *testing.T) {
t.Parallel()

// Re-enable this test when there is more than one acceptable node pool version
// for the current master version
t.Skip()

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

Expand Down Expand Up @@ -609,7 +611,6 @@ func TestAccContainerNodePool_version(t *testing.T) {
},
})
}
%>

func TestAccContainerNodePool_regionalClusters(t *testing.T) {
t.Parallel()
Expand Down Expand Up @@ -1425,9 +1426,6 @@ resource "google_container_node_pool" "np_with_node_config_scope_alias" {
`, cluster, np)
}

<%# Re-enable this test when there is more than one acceptable node pool version
for the current master version.
func testAccContainerNodePool_version(cluster, np string) string {
return fmt.Sprintf(`
data "google_container_engine_versions" "central1a" {
Expand Down Expand Up @@ -1475,7 +1473,6 @@ resource "google_container_node_pool" "np" {
}
`, cluster, np)
}
%>

func testAccContainerNodePool_012_ConfigModeAttr1(cluster, np string) string {
return fmt.Sprintf(`
Expand Down

0 comments on commit 07d9536

Please sign in to comment.