From f6db95e71c70a74e61167d95280abb8b06acf32a Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Wed, 7 Jun 2023 23:16:35 +0000 Subject: [PATCH] test(coderd/database/migrations): increase fixture test timeout --- coderd/database/migrations/migrate_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/coderd/database/migrations/migrate_test.go b/coderd/database/migrations/migrate_test.go index 263d51871e..3c71dd5029 100644 --- a/coderd/database/migrations/migrate_test.go +++ b/coderd/database/migrations/migrate_test.go @@ -271,7 +271,9 @@ func TestMigrateUpWithFixtures(t *testing.T) { db := testSQLDB(t) - ctx := testutil.Context(t, testutil.WaitLong) + // This test occasionally timed out in CI, which is understandable + // considering the amount of migrations and fixtures we have. + ctx := testutil.Context(t, testutil.WaitSuperLong) // Prepare database for stepping up. err := migrations.Down(db)