chore(agent/agentscripts): disable TestTimeout on macOS (#17300)

This commit is contained in:
Cian Johnston
2025-04-09 08:23:43 +00:00
committed by GitHub
parent a8fbe71a22
commit 43b1a034b1
+3
View File
@@ -102,6 +102,9 @@ func TestEnv(t *testing.T) {
func TestTimeout(t *testing.T) {
t.Parallel()
if runtime.GOOS == "darwin" {
t.Skip("this test is flaky on macOS, see https://github.com/coder/internal/issues/329")
}
runner := setup(t, nil)
defer runner.Close()
aAPI := agenttest.NewFakeAgentAPI(t, testutil.Logger(t), nil, nil)