From 20b4240a11239c122a23efd40bb1f278f209d4a2 Mon Sep 17 00:00:00 2001 From: Toutsu Date: Sat, 13 Jun 2026 15:58:44 +0300 Subject: [PATCH] ci: correct Testcontainers exclusion filter Exclude both by test class name and by xUnit collection name so the PostgreSQL-backed integration tests are reliably skipped on slow runners. --- .gitea/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-checks.yml b/.gitea/workflows/pr-checks.yml index 487688f..8b344c8 100644 --- a/.gitea/workflows/pr-checks.yml +++ b/.gitea/workflows/pr-checks.yml @@ -96,5 +96,5 @@ jobs: # migrations before the default timeouts expire. These tests are still run # locally and can be executed manually with `dotnet test`. dotnet test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj \ - --filter "FullyQualifiedName!~PortfolioMigrationPostgresTests&FullyQualifiedName!~CreateSessionHandlerIntegrationTests&FullyQualifiedName!~WizardDraftRepositoryTests&FullyQualifiedName!~DbSessionTriggerStoreTests" \ + --filter "FullyQualifiedName!~PortfolioMigrationPostgresTests&FullyQualifiedName!~CreateSessionHandlerIntegrationTests&FullyQualifiedName!~WizardDraftRepositoryTests&FullyQualifiedName!~DbSessionTriggerStoreTests&Collection!~CreateSessionHandlerPostgresCollection" \ --verbosity normal