Skip to content

Commit 43b1a03

Browse files
authored
chore(agent/agentscripts): disable TestTimeout on macOS (coder#17300)
1 parent a8fbe71 commit 43b1a03

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

agent/agentscripts/agentscripts_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ func TestEnv(t *testing.T) {
102102

103103
func TestTimeout(t *testing.T) {
104104
t.Parallel()
105+
if runtime.GOOS == "darwin" {
106+
t.Skip("this test is flaky on macOS, see https://github.com/coder/internal/issues/329")
107+
}
105108
runner := setup(t, nil)
106109
defer runner.Close()
107110
aAPI := agenttest.NewFakeAgentAPI(t, testutil.Logger(t), nil, nil)

0 commit comments

Comments
 (0)