Revert "Restore package concurrency"

This reverts commit 2ad9fb52ae.
This commit is contained in:
Matt Colyer
2013-12-19 12:02:18 -08:00
parent 1d70e12594
commit 2d17ffc792

View File

@@ -52,7 +52,9 @@ module.exports = (grunt) ->
continue unless isAtomPackage(packagePath)
packageSpecQueue.push(packagePath)
packageSpecQueue.concurrency = if process.platform is 'win32' then 2 else 1
# TODO: Restore concurrency on Windows
packageSpecQueue.concurrency = 1 unless process.platform is 'win32'
packageSpecQueue.drain = -> callback(null, failedPackages)
runCoreSpecs = (callback) ->
@@ -77,8 +79,10 @@ module.exports = (grunt) ->
if process.platform is 'win32'
process.stderr.write(fs.readFileSync('ci.log'))
fs.unlinkSync('ci.log')
else
# TODO: Restore concurrency on Windows
packageSpecQueue.concurrency = 2
packageSpecQueue.concurrency = 2
callback(null, error)
grunt.registerTask 'run-specs', 'Run the specs', ->