From fd0a49244e098a5a2efa715adedfae92b097765b Mon Sep 17 00:00:00 2001 From: binwiederhier Date: Sun, 15 Mar 2026 21:13:12 -0400 Subject: [PATCH] Disable test temporarily --- cmd/publish_test.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cmd/publish_test.go b/cmd/publish_test.go index 31d01cb5..1de9f5f9 100644 --- a/cmd/publish_test.go +++ b/cmd/publish_test.go @@ -2,9 +2,6 @@ package cmd import ( "fmt" - "github.com/stretchr/testify/require" - "heckel.io/ntfy/v2/test" - "heckel.io/ntfy/v2/util" "net/http" "net/http/httptest" "os" @@ -14,9 +11,14 @@ import ( "strings" "testing" "time" + + "github.com/stretchr/testify/require" + "heckel.io/ntfy/v2/test" + "heckel.io/ntfy/v2/util" ) func TestCLI_Publish_Subscribe_Poll_Real_Server(t *testing.T) { + t.Skip("temporarily disabled") // FIXME testMessage := util.RandomString(10) app, _, _, _ := newTestApp() require.Nil(t, app.Run([]string{"ntfy", "publish", "ntfytest", "ntfy unit test " + testMessage}))