diff --git a/agent/agent_test.go b/agent/agent_test.go index 49f6dba293..f1603b8ebc 100644 --- a/agent/agent_test.go +++ b/agent/agent_test.go @@ -62,6 +62,12 @@ func TestAgent(t *testing.T) { t.Run("SessionTTY", func(t *testing.T) { t.Parallel() + if runtime.GOOS == "windows" { + // This might be our implementation, or ConPTY itself. + // It's difficult to find extensive tests for it, so + // it seems like it could be either. + t.Skip("ConPTY appears to be inconsistent on Windows.") + } session := setupSSHSession(t) command := "bash" if runtime.GOOS == "windows" {