Skip to content

Commit

Permalink
test: disable TestWebsocketNetworkTelemetryTCP on CI (algorand#4827)
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy authored and algolucky committed Dec 5, 2022
1 parent 066d88e commit 9c521b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions network/wsNetwork_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2681,6 +2681,10 @@ func TestPreparePeerData(t *testing.T) {
func TestWebsocketNetworkTelemetryTCP(t *testing.T) {
partitiontest.PartitionTest(t)

if strings.ToUpper(os.Getenv("CIRCLECI")) == "TRUE" {
t.Skip("Flaky on CIRCLECI")
}

// start two networks and send 2 messages from A to B
closed := false
netA, netB, counter, closeFunc := setupWebsocketNetworkAB(t, 2)
Expand Down

0 comments on commit 9c521b8

Please sign in to comment.