-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Suppress module name spew when running tests. #2363
Suppress module name spew when running tests. #2363
Conversation
@@ -6,15 +6,15 @@ envlist = | |||
deps = | |||
pytest | |||
covercmd = | |||
py.test \ | |||
py.test -q \ |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
--cov=google.cloud \ | ||
--cov=unit_tests \ | ||
--cov-config {toxinidir}/.coveragerc \ | ||
unit_tests | ||
|
||
[testenv] | ||
commands = | ||
py.test {posargs} unit_tests | ||
py.test -q {posargs} unit_tests |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@tseaver I'm unclear what spew is being quited here. Care to give a bit more detail? |
@dhermes py.test defaults to verbosity == 1, which injects the unit test module name into the output., e.g.:
With the PR, it is just dots (less noise, more signal):
|
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.