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 datafusion tests for internal errors #12595

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions mmv1/products/datafusion/Instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ examples:
test_vars_overrides:
# Mark for testing to avoid service networking connection usage that is not cleaned up
'prober_test_run': '`options = { prober_test_run = "true" }`'
skip_test: https://github.com/hashicorp/terraform-provider-google/issues/20574
- name: 'data_fusion_instance_full'
primary_resource_id: 'extended_instance'
vars:
Expand All @@ -65,6 +66,7 @@ examples:
test_vars_overrides:
# Mark for testing to avoid service networking connection usage that is not cleaned up
'prober_test_run': '`options = { prober_test_run = "true" }`'
skip_test: https://github.com/hashicorp/terraform-provider-google/issues/20574
- name: 'data_fusion_instance_psc'
primary_resource_id: 'psc_instance'
vars:
Expand All @@ -76,10 +78,12 @@ examples:
test_vars_overrides:
# Mark for testing to avoid service networking connection usage that is not cleaned up
'prober_test_run': '`options = { prober_test_run = "true" }`'
skip_test: https://github.com/hashicorp/terraform-provider-google/issues/20574
- name: 'data_fusion_instance_cmek'
primary_resource_id: 'cmek'
vars:
instance_name: 'my-instance'
skip_test: https://github.com/hashicorp/terraform-provider-google/issues/20574
- name: 'data_fusion_instance_enterprise'
primary_resource_id: 'enterprise_instance'
vars:
Expand All @@ -96,6 +100,7 @@ examples:
primary_resource_id: 'zone'
vars:
instance_name: 'my-instance'
skip_test: https://github.com/hashicorp/terraform-provider-google/issues/20574
parameters:
- name: 'region'
type: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
)

func TestAccDataFusionInstance_update(t *testing.T) {
t.Skip("https://github.com/hashicorp/terraform-provider-google/issues/20574")
t.Parallel()

instanceName := fmt.Sprintf("tf-test-%s", acctest.RandString(t, 10))
Expand Down Expand Up @@ -87,6 +88,7 @@ resource "google_data_fusion_instance" "foobar" {
}

func TestAccDataFusionInstanceEnterprise_update(t *testing.T) {
t.Skip("https://github.com/hashicorp/terraform-provider-google/issues/20574")
t.Parallel()

instanceName := fmt.Sprintf("tf-test-%s", acctest.RandString(t, 10))
Expand Down Expand Up @@ -154,6 +156,7 @@ resource "google_data_fusion_instance" "foobar" {
}

func TestAccDataFusionInstanceVersion_dataFusionInstanceUpdate(t *testing.T) {
t.Skip("https://github.com/hashicorp/terraform-provider-google/issues/20574")
t.Parallel()

context := map[string]interface{}{
Expand Down
Loading