Skip to content

Commit 18dde7f

Browse files
committed
chore(agent/agentscripts): disable TestTimeout on macOS
1 parent 0e65821 commit 18dde7f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

agent/agentscripts/agentscripts_test.go

+3
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)