test: increase Testcontainers fixture timeout to 5 minutes
PR Checks / test-and-build (pull_request) Failing after 34m25s

Slow ARM64 runners need more time to start PostgreSQL containers and run
migrations before integration tests execute.
This commit is contained in:
2026-06-13 13:29:30 +03:00
parent 02fc5bd106
commit 29e5652477
3 changed files with 3 additions and 3 deletions
@@ -14,7 +14,7 @@ public sealed class CreateSessionHandlerPostgresCollection : ICollectionFixture<
public sealed class CreateSessionHandlerPostgresFixture : IAsyncLifetime
{
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(2);
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(5);
private readonly PostgreSqlContainer container = new PostgreSqlBuilder("postgres:17-alpine").Build();
public Task InitializeAsync()
@@ -11,7 +11,7 @@ public sealed class WizardDraftRepositoryCollection : ICollectionFixture<WizardD
public sealed class WizardDraftRepositoryFixture : IAsyncLifetime
{
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(2);
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(5);
private readonly PostgreSqlContainer container = new PostgreSqlBuilder("postgres:17-alpine").Build();
public Task InitializeAsync()
@@ -11,7 +11,7 @@ public sealed class PortfolioMigrationPostgresCollection : ICollectionFixture<Po
public sealed class PortfolioMigrationPostgresFixture : IAsyncLifetime
{
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(2);
private static readonly TimeSpan ContainerTimeout = TimeSpan.FromMinutes(5);
private readonly PostgreSqlContainer container = new PostgreSqlBuilder("postgres:17-alpine").Build();
public Task InitializeAsync()