Skip to content

Commit e867027

Browse files
committed
skip flaky test on non-linux platforms
1 parent d39d2ff commit e867027

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

loadtest/reconnectingpty/run_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323

2424
func Test_Runner(t *testing.T) {
2525
t.Parallel()
26-
if runtime.GOOS == "windows" {
27-
t.Skip("PTY is flakey on Windows")
26+
if runtime.GOOS != "linux" {
27+
t.Skip("PTY is flakey on non-Linux platforms")
2828
}
2929

3030
t.Run("OK", func(t *testing.T) {

0 commit comments

Comments
 (0)