From 1ae41095fafdbd2cfed915210c1557a3ee8b9239 Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Thu, 16 Jul 2026 12:00:04 +1000 Subject: [PATCH 1/2] test: increase testcontainers startup timeout --- src/testcontainers/Instance.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testcontainers/Instance.test.ts b/src/testcontainers/Instance.test.ts index 6b7cf00..08aac71 100644 --- a/src/testcontainers/Instance.test.ts +++ b/src/testcontainers/Instance.test.ts @@ -3,7 +3,7 @@ import { Instance } from 'prool/testcontainers' import { afterEach, describe, expect, test } from 'vitest' const instances: Instance.Instance[] = [] -const slowTestTimeout = 30_000 +const slowTestTimeout = 120_000 const port = await getPort() From 398556c67e7a612241efbfacf06df2613bcd723b Mon Sep 17 00:00:00 2001 From: jxom <7336481+jxom@users.noreply.github.com> Date: Thu, 16 Jul 2026 12:06:40 +1000 Subject: [PATCH 2/2] ci: use runner Docker daemon --- .github/workflows/verify.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 441fab0..9ca06fb 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -57,9 +57,6 @@ jobs: - name: Add Tempo to PATH run: echo "$HOME/.local/bin" >> $GITHUB_PATH - - name: Set up Docker - uses: docker/setup-docker-action@v4 - - name: Run tests run: pnpm test --bail=1 env: