From 82a444dcafe6cd30611d1210864653d16c4a8109 Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Mon, 8 Jun 2026 10:12:01 +0800 Subject: [PATCH] fix: set MAX_PIPELINE_STEPS=0 in test env to match unlimited assumption Two pipeline tests ("accepts pipeline with more than 20 steps when limit is unlimited") expected unlimited steps but the test env didn't set MAX_PIPELINE_STEPS, falling back to the default of 20. --- vitest.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.ts b/vitest.config.ts index f39a021e..80477826 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -56,6 +56,7 @@ export default defineConfig({ CONCURRENT_JOBS: "3", FILE_MAX_AGE_HOURS: "1", CLEANUP_INTERVAL_MINUTES: "60", + MAX_PIPELINE_STEPS: "0", }, coverage: { provider: "v8",