-
Notifications
You must be signed in to change notification settings - Fork 1.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
Test log: info and warning never show up #22335
Comments
hm yes I am able to repro, will investigate! Thanks |
Hi @Bjoernolav thank you for your comment! Currently this is not possible as a functionality. Pytest does not tie output printed to stdout to the given test which produced it. Therefore we are unable to take the given output and say it is due to a specific test without running each test individually and awaiting all output responses which would be contrary to the how pytest designed it. Sorry! |
Hi @Bjoernolav, I was mistaken before and I can correlate specific output to a given test. I created an issue for this feature request which you can find here: #22594. Please upvote to demonstrate interest as this will help prioritize it. Thanks |
Because we have not heard back with the information we requested, we are closing this issue for now. If you are able to provide the info later on, then we will be happy to re-open this issue to pick up where we left off. Happy Coding! |
Testing #22291
Regardless of log level,
logger.debug
andlogger.info
never show up in the Python test log. Is that expected?The text was updated successfully, but these errors were encountered: