Skip to content

Commit

Permalink
build(ci): disable execa timeout to prevent failing perf job (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRuf authored and nicojs committed Jul 1, 2019
1 parent 5916b40 commit ff2ccfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perf/tasks/run-perf-tests.ts
Expand Up @@ -36,7 +36,7 @@ function execNpm(args: string[], testDir: string): Observable<string> {
console.log(`Exec ${testDir} npm ${args.join(' ')}`);

return new Observable(observer => {
const testProcess = execa('npm', args, { timeout: 500000, cwd: currentTestDir, stdio: 'pipe' });
const testProcess = execa('npm', args, { timeout: 0, cwd: currentTestDir, stdio: 'pipe' });
let stderr = '';
testProcess.stderr.on('data', chunk => stderr += chunk.toString());
testProcess.stdout.on('data', chunk => observer.next(chunk.toString().trim()));
Expand Down

0 comments on commit ff2ccfc

Please sign in to comment.