Skip to content

Commit c8e68db

Browse files
committed
disable broken test
1 parent 6112bb2 commit c8e68db

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

enterprise/coderd/workspaceagents_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"net/http"
88
"os"
99
"regexp"
10+
"runtime"
1011
"testing"
1112
"time"
1213

@@ -83,6 +84,10 @@ func TestBlockNonBrowser(t *testing.T) {
8384
func TestReinitializeAgent(t *testing.T) {
8485
t.Parallel()
8586

87+
if runtime.GOOS == "windows" {
88+
t.Skip("this test doesn't pass on Windows with Postgres")
89+
}
90+
8691
tempAgentLog := testutil.CreateTemp(t, "", "testReinitializeAgent")
8792

8893
if !dbtestutil.WillUsePostgres() {

0 commit comments

Comments
 (0)