Skip to content

Commit

Permalink
test: Reduce clone parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Jul 27, 2019
1 parent 519423c commit a8f0deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var test = require('tape')
var GIT = 'git'
var STANDARD = path.join(__dirname, '..', 'bin', 'cmd.js')
var TMP = path.join(__dirname, '..', 'tmp')
var PARALLEL_LIMIT = Math.max(os.cpus().length - 1, 1)
var PARALLEL_LIMIT = Math.ceil(os.cpus().length / 2)

var argv = minimist(process.argv.slice(2), {
boolean: [
Expand Down

0 comments on commit a8f0deb

Please sign in to comment.