From c7f5aaa7027fa3bd6a48c9c972ea3ed45c46337c Mon Sep 17 00:00:00 2001 From: tanzhenxin Date: Thu, 23 Oct 2025 19:17:01 +0800 Subject: [PATCH] chore: try fix e2e test fail on cloud run --- .github/workflows/release.yml | 10 ---------- integration-tests/vitest.config.ts | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ffb502fa..8253673f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -128,16 +128,6 @@ jobs: OPENAI_BASE_URL: '${{ secrets.OPENAI_BASE_URL }}' OPENAI_MODEL: '${{ secrets.OPENAI_MODEL }}' - - name: 'Upload Integration Test Results' - if: |- - ${{ always() && github.event.inputs.force_skip_tests != 'true' }} - uses: 'actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808' # ratchet:actions/upload-artifact@v4 - with: - name: 'integration-test-results-${{ github.run_id }}' - path: '.integration-tests/' - retention-days: 7 - if-no-files-found: 'warn' - - name: 'Configure Git User' run: | git config user.name "github-actions[bot]" diff --git a/integration-tests/vitest.config.ts b/integration-tests/vitest.config.ts index c8b79ad6..d0172c9a 100644 --- a/integration-tests/vitest.config.ts +++ b/integration-tests/vitest.config.ts @@ -17,7 +17,7 @@ export default defineConfig({ include: ['**/*.test.ts'], exclude: ['**/terminal-bench/*.test.ts', '**/node_modules/**'], retry: 2, - fileParallelism: true, + fileParallelism: false, poolOptions: { threads: { minThreads: 2,