-
Notifications
You must be signed in to change notification settings - Fork 231
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
less verbose worker startup? #423
Comments
Hi @ThomasWaldmann, If you pass I'm closing this for now, but feel free to followup with further questions. 👍 |
ah good. guess i didn't try that because I assumed it silences more than that. |
On large build/CI boxes with high What do you think about perhaps doing this? diff --git a/src/xdist/dsession.py b/src/xdist/dsession.py
index 7ac5f57..acb237e 100644
--- a/src/xdist/dsession.py
+++ b/src/xdist/dsession.py
@@ -350,7 +350,7 @@ class TerminalDistReporter(object):
self.rewrite(self.getstatus())
def getstatus(self):
- if self.config.option.verbose >= 0:
+ if self.config.option.verbose >= 2:
parts = [
"{} {}".format(spec.id, self._status[spec.id]) for spec in self._specs
] |
Please see #555 for a proposal. 👍 |
Is there a way to have the worker startup a bit less verbose and better fit into screen width?
The text was updated successfully, but these errors were encountered: