From dd7e7adc5cd4943e949ef5d47c61c9d3044fe3e3 Mon Sep 17 00:00:00 2001 From: sec-check Date: Mon, 6 Jul 2026 23:52:47 -0400 Subject: [PATCH] [scanner] fix: remove --pool=threads override in Coverage Suite workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #20435 reverted pool:'threads' in vite.config.ts but workflow still hardcoded --pool=threads on line 69, forcing threads mode despite config. Threads share memory → mock cross-contamination → 265 test failures. Fixes #20439 Signed-off-by: sec-check --- .github/workflows/coverage-hourly.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/coverage-hourly.yml b/.github/workflows/coverage-hourly.yml index d375e963d4..927626facf 100644 --- a/.github/workflows/coverage-hourly.yml +++ b/.github/workflows/coverage-hourly.yml @@ -66,7 +66,6 @@ jobs: npx vitest run --coverage --coverage.reportOnFailure \ --reporter=verbose --reporter=json \ --outputFile.json=test-results.json \ - --pool=threads \ --shard=${{ matrix.shard }}/${{ env.TOTAL_SHARDS }} || true # Extract failed test names for the issue body