Skip to content

Commit f6db95e

Browse files
committed
test(coderd/database/migrations): increase fixture test timeout
1 parent 52ead3d commit f6db95e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

coderd/database/migrations/migrate_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,9 @@ func TestMigrateUpWithFixtures(t *testing.T) {
271271

272272
db := testSQLDB(t)
273273

274-
ctx := testutil.Context(t, testutil.WaitLong)
274+
// This test occasionally timed out in CI, which is understandable
275+
// considering the amount of migrations and fixtures we have.
276+
ctx := testutil.Context(t, testutil.WaitSuperLong)
275277

276278
// Prepare database for stepping up.
277279
err := migrations.Down(db)

0 commit comments

Comments
 (0)