From f85bf3c410f8142d57c798b1a796e37c795c1b32 Mon Sep 17 00:00:00 2001 From: Bianca Lisle Date: Mon, 20 Oct 2025 10:50:19 +0100 Subject: [PATCH 1/2] chore: update cleanup to run hourly --- .github/workflows/cleanup-atlas-env.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cleanup-atlas-env.yml b/.github/workflows/cleanup-atlas-env.yml index ce3b64bfc..34fe1e70c 100644 --- a/.github/workflows/cleanup-atlas-env.yml +++ b/.github/workflows/cleanup-atlas-env.yml @@ -3,7 +3,7 @@ name: "Cleanup stale Atlas test environments" on: workflow_dispatch: schedule: - - cron: "0 0 * * *" + - cron: "0 * * * *" permissions: {} From 90478e74c4bbee7794e50eb18704753cd0e8c1c3 Mon Sep 17 00:00:00 2001 From: Bianca Lisle Date: Mon, 20 Oct 2025 11:29:01 +0100 Subject: [PATCH 2/2] update timeout to 15min --- tests/integration/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/helpers.ts b/tests/integration/helpers.ts index 391804e85..efb9e0eba 100644 --- a/tests/integration/helpers.ts +++ b/tests/integration/helpers.ts @@ -58,7 +58,7 @@ export const defaultTestConfig: UserConfig = { loggers: ["stderr"], }; -export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 1_200_000; +export const DEFAULT_LONG_RUNNING_TEST_WAIT_TIMEOUT_MS = 900_000; export function setupIntegrationTest( getUserConfig: () => UserConfig,