Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuker committed Jan 11, 2024
1 parent 88f536b commit e2c30f6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/keystore/azure/key-vault_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ func TestConnectWithCredentials(t *testing.T) {
TenantID := ""
Secret := ""
EndPoint := ""
if ClientID == "" || TenantID == "" || Secret == "" || EndPoint == "" {
t.Skip("Skipping test due to missing credentials")
}
ctx := context.Background()
os.Setenv("AZURE_CLIENT_API_VERSION", "7.2")
c1, err := ConnectWithCredentials(ctx, EndPoint, Credentials{TenantID: TenantID, ClientID: ClientID, Secret: Secret})
Expand Down

0 comments on commit e2c30f6

Please sign in to comment.