From 1f58b99380d6fd0a59800fdf7bfabf866caf54eb Mon Sep 17 00:00:00 2001 From: Sung-Hyun Kang Date: Sat, 2 May 2026 23:01:07 -0500 Subject: [PATCH] bring back all tests --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3dd01e9c..69720bfb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -296,9 +296,9 @@ jobs: echo "::add-mask::$MONGO_READONLY_TESTACCOUNT_TOKEN" echo MONGO_READONLY_TESTACCOUNT_TOKEN=$MONGO_READONLY_TESTACCOUNT_TOKEN >> $GITHUB_ENV - name: List test files for shard ${{ matrix['shardIndex'] }} of ${{ matrix['shardTotal']}} - run: npx playwright test test/sql/query.spec.ts --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --list + run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --list - name: Run test shard ${{ matrix['shardIndex'] }} of ${{ matrix['shardTotal']}} - run: npx playwright test test/sql/query.spec.ts --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --workers=3 + run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --workers=3 - name: Upload blob report to GitHub Actions Artifacts if: ${{ !cancelled() }} uses: actions/upload-artifact@v4