Skip to content

Commit

Permalink
Update notification test skips
Browse files Browse the repository at this point in the history
  • Loading branch information
ahobsonsayers committed Oct 8, 2024
1 parent db1f891 commit 3281af4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions cmd/twitchets/notification/gotify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import (
)

func TestGotifySendTicketMessage(t *testing.T) {
t.Skip("Currently don't have a gotify server. Figure out how to test")
testutils.SkipIfCI(t, "No env set in CI. Fix")
t.Skip("Can only be run manually locally with environment variables set. Comment to run.")

_ = godotenv.Load(testutils.ProjectDirectoryJoin(t, ".env"))

Expand Down
2 changes: 1 addition & 1 deletion cmd/twitchets/notification/ntfy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func TestNtfySendTicketMessage(t *testing.T) {
testutils.SkipIfCI(t, "No env set in CI. Fix")
t.Skip("Can only be run manually locally with environment variables set. Comment to run.")

_ = godotenv.Load(testutils.ProjectDirectoryJoin(t, ".env"))

Expand Down
2 changes: 1 addition & 1 deletion cmd/twitchets/notification/telegram_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

func TestTelegramSendTicketMessage(t *testing.T) {
testutils.SkipIfCI(t, "No env set in CI. Fix")
t.Skip("Can only be run manually locally with environment variables set. Comment to run.")

_ = godotenv.Load(testutils.ProjectDirectoryJoin(t, ".env"))

Expand Down

0 comments on commit 3281af4

Please # to comment.