-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not respecting --silent flag on install #817
Comments
npm install --quiet and --silent suppresses the excessive cypress logs on Ubuntu xenial, but NOT debian jessie |
Nice. :) |
Released in |
On second thought, we shouldn't blanket-disable all of our logging, we should just make sure to keep logging to a minimum. For example, if Cypress is downloading a ~300mb binary, we should tell the user regardless. Here's puppeteer when installing with PR here #2706 |
Is this a Feature or Bug?
A bug.
Current behavior:
When running
npm install
in silent mode (--silent
), Cypress installs itself in verbose mode (installing, unzipping, checking printed out).Desired behavior:
If
npm install
is run in silent mode (--silent
), Cypress sticks to it and doesn’t output anything upon installation.How to reproduce:
npm install --silent
Additional Info (images, stack traces, etc)
This is a problem in logs because we end up with thousands of lines of Cypress installing then unzipping itself. Avoiding these kind of logs is why we run
npm install
in silent mode in the first place.The text was updated successfully, but these errors were encountered: