mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
test(coderd/database/migrations): increase fixture test timeout
This commit is contained in:
@ -271,7 +271,9 @@ func TestMigrateUpWithFixtures(t *testing.T) {
|
|||||||
|
|
||||||
db := testSQLDB(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.
|
// Prepare database for stepping up.
|
||||||
err := migrations.Down(db)
|
err := migrations.Down(db)
|
||||||
|
Reference in New Issue
Block a user