Skip to content

Commit

Permalink
Skip WebSocket and Yamux
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed Jun 7, 2023
1 parent c9ef563 commit 30e3707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p2p/test/transport/deadline_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
func TestNewStreamDeadlines(t *testing.T) {
for _, tc := range transportsToTest {
t.Run(tc.Name, func(t *testing.T) {
if strings.Contains(tc.Name, "WebSocket") {
t.Skip("WebSocket is flaky for this kind of test")
if strings.Contains(tc.Name, "WebSocket") || strings.Contains(tc.Name, "Yamux") {
t.Skip("Fixme: websocket and yamux are flaky in this this")
}
if strings.Contains(tc.Name, "mplex") {
t.Skip("In a localhost test, writes may succeed instantly so a select { <-ctx.Done; <-write } may write.")
Expand Down

0 comments on commit 30e3707

Please sign in to comment.