Merge pull request #866 from mbilker/remove-module-list

Remove log of integration test package installation by default
This commit is contained in:
Ben Gotow 2016-01-04 12:14:46 -08:00
commit d21fcf7069

View file

@ -95,16 +95,21 @@ function bootstrap() {
env: apmEnv
};
var integrationCommand = npmPath + npmFlags + 'install';
var integrationOptions = {cwd: path.resolve(__dirname, '..', 'spec_integration')};
if (process.argv.indexOf('--no-quiet') === -1) {
buildInstallCommand += ' --loglevel error';
npmInstallApmCommand += ' --loglevel error';
apmInstallCommand += ' --loglevel error';
integrationCommand += ' --loglevel error';
apmDedupeCommand += ' --quiet';
npmDedupeNpmOptions.ignoreStderr = true;
npmDedupeNpmOptions.ignoreStdout = true;
buildInstallOptions.ignoreStdout = true;
npmInstallApmOptions.ignoreStdout = true;
integrationOptions.ignoreStdout = true;
}
// apm ships with 32-bit node so make sure its native modules are compiled
@ -145,9 +150,6 @@ function bootstrap() {
var downloadElectronCmd = gruntPath + " download-electron --gruntfile build/Gruntfile.coffee"
m7 += " $ "+downloadElectronCmd
var integrationCommand = npmPath + npmFlags + 'install';
var integrationOptions = {cwd: path.resolve(__dirname, '..', 'spec_integration')};
m8 = "\n\n---> Installing integration test modules\n\n"
m8 += " $ "+integrationCommand+" "+printArgs(integrationOptions)+"\n"