Skip to content

Commit

Permalink
skip VCR for tests that create bigtable instance (#9369) (#6580)
Browse files Browse the repository at this point in the history
[upstream:78ea2f9f71bc64634a0f88553e563b239251f310]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Oct 27, 2023
1 parent abf785b commit 2bc8d5b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/9369.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
2 changes: 2 additions & 0 deletions google-beta/services/bigquery/resource_bigquery_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,8 @@ func TestAccBigQueryExternalDataTable_CSV_WithSchema_UpdateAllowQuotedNewlines(t
}

func TestAccBigQueryDataTable_bigtable(t *testing.T) {
// bigtable instance does not use the shared HTTP client, this test creates an instance
acctest.SkipIfVcr(t)
t.Parallel()

context := map[string]interface{}{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import (
)

func TestAccBigtableAppProfile_bigtableAppProfileAnyclusterExample(t *testing.T) {
acctest.SkipIfVcr(t)
t.Parallel()

context := map[string]interface{}{
Expand Down Expand Up @@ -95,6 +96,7 @@ resource "google_bigtable_app_profile" "ap" {
}

func TestAccBigtableAppProfile_bigtableAppProfileSingleclusterExample(t *testing.T) {
acctest.SkipIfVcr(t)
t.Parallel()

context := map[string]interface{}{
Expand Down Expand Up @@ -150,6 +152,7 @@ resource "google_bigtable_app_profile" "ap" {
}

func TestAccBigtableAppProfile_bigtableAppProfileMulticlusterExample(t *testing.T) {
acctest.SkipIfVcr(t)
t.Parallel()

context := map[string]interface{}{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ func TestAccBigtableGCPolicy_multiplePolicies(t *testing.T) {
}

func TestAccBigtableGCPolicy_gcRulesPolicy(t *testing.T) {
// bigtable instance does not use the shared HTTP client, this test creates an instance
acctest.SkipIfVcr(t)
t.Parallel()

Expand Down

0 comments on commit 2bc8d5b

Please sign in to comment.