Skip to content

Commit fbad6a4

Browse files
committed
remove t.skip if HYOK_ORGANIZATION_NAME not set
1 parent 3f238a7 commit fbad6a4

4 files changed

+0
-12
lines changed

internal/provider/resource_tfe_aws_oidc_configuration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ func TestAccTFEAWSOIDCConfiguration_basic(t *testing.T) {
1313
skipUnlessHYOKEnabled(t)
1414

1515
orgName := os.Getenv("HYOK_ORGANIZATION_NAME")
16-
if orgName == "" {
17-
t.Skip("Skipping test. Set HYOK_ORGANIZATION_NAME environment to enable test.")
18-
}
1916

2017
originalRoleARN := "arn:aws:iam::123456789012:role/terraform-provider-tfe-example-1"
2118
newRoleARN := "arn:aws:iam::123456789012:role/terraform-provider-tfe-example-2"

internal/provider/resource_tfe_azure_oidc_configuration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ func TestAccTFEAzureOIDCConfiguration_basic(t *testing.T) {
1313
skipUnlessHYOKEnabled(t)
1414

1515
orgName := os.Getenv("HYOK_ORGANIZATION_NAME")
16-
if orgName == "" {
17-
t.Skip("Skipping test. Set HYOK_ORGANIZATION_NAME environment to enable test.")
18-
}
1916

2017
originalClientID := "client-id-1"
2118
updatedClientID := "client-id-2"

internal/provider/resource_tfe_gcp_oidc_configuration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ func TestAccTFEGCPOIDCConfiguration_basic(t *testing.T) {
1313
skipUnlessHYOKEnabled(t)
1414

1515
orgName := os.Getenv("HYOK_ORGANIZATION_NAME")
16-
if orgName == "" {
17-
t.Skip("Skipping test. Set HYOK_ORGANIZATION_NAME environment to enable test.")
18-
}
1916

2017
originalServiceAccountEmail := "[email protected]"
2118
updatedServiceAccountEmail := "[email protected]"

internal/provider/resource_tfe_vault_oidc_configuration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ func TestAccTFEVaultOIDCConfiguration_basic(t *testing.T) {
1313
skipUnlessHYOKEnabled(t)
1414

1515
orgName := os.Getenv("HYOK_ORGANIZATION_NAME")
16-
if orgName == "" {
17-
t.Skip("Skipping test. Set HYOK_ORGANIZATION_NAME environment to enable test.")
18-
}
1916

2017
originalAddress := "https://vault.example.com"
2118
updatedAddress := "https://vault.example2.com"

0 commit comments

Comments
 (0)