Skip to content

Commit 46122f2

Browse files
committed
only Linux
1 parent fb34c4f commit 46122f2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

loadtest/reconnectingpty/run_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package reconnectingpty_test
33
import (
44
"bytes"
55
"context"
6+
"runtime"
67
"testing"
78
"time"
89

@@ -22,6 +23,9 @@ import (
2223

2324
func Test_Runner(t *testing.T) {
2425
t.Parallel()
26+
if runtime.GOOS != "linux" {
27+
t.Skip("PTY is flakey on non-Linux platforms")
28+
}
2529

2630
t.Run("OK", func(t *testing.T) {
2731
t.Parallel()

0 commit comments

Comments
 (0)