-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Trying to update pytest 4 to 5 -> pytest_report_teststatus(report) Trying to update pytest 4.0 to 5 #6169
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
Comments
|
def pytest_report_teststatus(config, report):
if (not config.option.poo) or ('poo' not in report.keywords) or (report.when != 'call'):
return
if (config.option.verbose == -1 and report.passed) or config.option.verbose >= 0:
return (report.outcome, PILE_OF_POO, '%s (%s)' % (report.outcome.upper(), PILE_OF_POO)) untested |
the parameter is provided by pytest |
That's a different issue then - please post the full output you see over at pytest-dev/pytest-xdist#464. |
This comment has been minimized.
This comment has been minimized.
also please do not reuse/change issues in that manner, its really confusing as this is now about 2 completely different things |
sorry about that okey, then. i will change it back and create new one. |
thanks for sorting this 👍 |
Uh oh!
There was an error while loading. Please reload this page.
it gives me error pytest does not have config. i know that it was deprecated. And i can use fixture to receive config object.
The text was updated successfully, but these errors were encountered: