Skip to content

Commit 7ccb2c4

Browse files
committed
skip vapid keypair test on non-postgres;
1 parent 72c2901 commit 7ccb2c4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cli/server_regenerate_vapid_keypair_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ import (
1717

1818
func TestRegenerateVapidKeypair(t *testing.T) {
1919
t.Parallel()
20+
if !dbtestutil.WillUsePostgres() {
21+
t.Skip("this test is only supported on postgres")
22+
}
2023

2124
t.Run("NoExistingVAPIDKeys", func(t *testing.T) {
2225
t.Parallel()

0 commit comments

Comments
 (0)