Skip to content

Commit

Permalink
Re-mark pubsub tests as flaky (#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbuchwald authored Oct 3, 2024
1 parent d847132 commit 47849d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pubsub/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ func (x *counter) dummyProcessTXCallback(b []byte, _ *Connection) {
// a msg to be sent to all connections. Checks the message was delivered properly
// and the connection is properly handled when closed.
func TestServerPublish(t *testing.T) {
t.Skip("FLAKY")

require := require.New(t)
// Create a new logger for the test
logger := logging.NoLog{}
Expand Down Expand Up @@ -192,6 +194,8 @@ func TestServerRead(t *testing.T) {
// a msg to be sent to only one of the connections. Checks the message was
// delivered properly and the connection is properly handled when closed.
func TestServerPublishSpecific(t *testing.T) {
t.Skip("FLAKY")

require := require.New(t)
// Create a new logger for the test
logger := logging.NoLog{}
Expand Down

0 comments on commit 47849d8

Please sign in to comment.