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

Fix import resources with provider default tags #4169

Merged
merged 18 commits into from
Jul 23, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
skip test
  • Loading branch information
corymhall committed Jul 3, 2024
commit e573c99f25420a1fd68fa1c6498f220c876ab9b5
8 changes: 8 additions & 0 deletions provider/provider_yaml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,10 @@ resources:
// TestDefaultTagsImport tests the scenario where `tagsAll` and `tags` both
// exist and the user is importing a resource.
func TestDefaultTagsImport(t *testing.T) {
if testing.Short() {
t.Skipf("Skipping in testing.Short() mode, assuming this is a CI run without credentials")
}

bucketName := fmt.Sprintf("mybucket-%d", time.Now().UnixNano())
file1 := `
name: default-tags
Expand Down Expand Up @@ -464,6 +468,10 @@ outputs:
}

func TestRegress4080(t *testing.T) {
if testing.Short() {
t.Skipf("Skipping in testing.Short() mode, assuming this is a CI run without credentials")
}

file1 := `
name: test-aws-1655-pf
runtime: yaml
Expand Down
Loading