Skip to content

Commit

Permalink
test: disable TestWebsocketNetworkTelemetryTCP on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy committed Nov 22, 2022
1 parent 60d0c09 commit ae26046
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 ae26046

Please sign in to comment.