Skip to content

Commit

Permalink
chore: tweak the test:ci configuration (#5910)
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin authored May 24, 2024
1 parent a905f31 commit 6d1818f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}

- name: Run tests
run: pnpm run test:ci --filter=${{ matrix.filter }}
run: pnpm run test:ci --concurrency 1 --filter=${{ matrix.filter }}
env:
TMP_CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
TMP_CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"fix": "dotenv -- turbo check:lint -- --fix && pnpm run prettify",
"prettify": "prettier . --write --ignore-unknown",
"test": "vitest run --no-file-parallelism && dotenv -- turbo test --filter=wrangler --filter=miniflare --filter=kv-asset-handler --filter=@cloudflare/vitest-pool-workers --filter=@cloudflare/vitest-pool-workers-examples",
"test:ci": "dotenv -- turbo test:ci --concurrency 1",
"test:ci": "dotenv -- turbo test:ci",
"test:e2e": "dotenv -- turbo test:e2e --log-order=stream",
"test:watch": "turbo test:watch",
"type:tests": "dotenv -- turbo type:tests",
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"prepublishOnly": "SOURCEMAPS=false pnpm run -w build",
"start": "pnpm run bundle && cross-env NODE_OPTIONS=--enable-source-maps ./bin/wrangler.js",
"test": "pnpm run assert-git-version && vitest",
"test:ci": "pnpm run test",
"test:ci": "pnpm run test run",
"test:debug": "pnpm run test --silent=false --verbose=true",
"test:e2e": "vitest -c ./e2e/vitest.config.ts",
"test:watch": "pnpm run test --testTimeout=50000 --watch",
Expand Down

0 comments on commit 6d1818f

Please sign in to comment.