Revert "Don't run GitHub operations inline during script/test"

This reverts commit 7ccf465370.
This commit is contained in:
Michelle Tilley
2017-05-10 17:17:06 +02:00
parent 7ccf465370
commit 30ee14bd13

View File

@@ -41,6 +41,7 @@ function runCoreMainProcessTests (callback) {
console.log('Executing core main process tests'.bold.green)
const cp = childProcess.spawn(executablePath, testArguments, {
stdio: 'inherit',
env: Object.assign({}, process.env, {ATOM_GITHUB_INLINE_GIT_EXEC: 'true'})
})
cp.on('error', error => { callback(error) })
cp.on('close', exitCode => { callback(null, exitCode) })