Skip to content

Commit

Permalink
tests: skip GPG integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrombley committed Oct 25, 2024
1 parent 33160b6 commit b7d17f2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions gpg_key_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import (
)

func TestGPGKeyList(t *testing.T) {
t.Skip()

client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -97,6 +99,8 @@ func TestGPGKeyList(t *testing.T) {
}

func TestGPGKeyCreate(t *testing.T) {
t.Skip()

client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -156,6 +160,8 @@ func TestGPGKeyCreate(t *testing.T) {
}

func TestGPGKeyRead(t *testing.T) {
t.Skip()

client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -195,6 +201,8 @@ func TestGPGKeyRead(t *testing.T) {
}

func TestGPGKeyUpdate(t *testing.T) {
t.Skip()

client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -258,6 +266,8 @@ func TestGPGKeyUpdate(t *testing.T) {
}

func TestGPGKeyDelete(t *testing.T) {
t.Skip()

client := testClient(t)
ctx := context.Background()

Expand Down

0 comments on commit b7d17f2

Please sign in to comment.