Skip to content

Commit

Permalink
fine, no concurrency then
Browse files Browse the repository at this point in the history
  • Loading branch information
argosphil committed Feb 28, 2024
1 parent 03be43c commit 73b9bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bun-internal-test/src/runner.node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function defaultConcurrency() {
if (windows) {
return Math.floor((cpus().length - 2) / 2);
}
return 2;
return 1;
}

const run_concurrency = Math.max(Number(process.env["BUN_TEST_CONCURRENCY"] || defaultConcurrency(), 10), 1);
Expand Down

0 comments on commit 73b9bad

Please sign in to comment.