-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
pytest.mark.filterwarnings doesn't work if warning already shown on python2.7 #3954
Comments
see pytest-dev/pytest#3954 (I think)
The docs say:
Perhaps pytest should clear the warnings registry? |
So long as we clear and then restore the warnings registry, that sounds good to me. This will be best-effort only though - code under test might use a different registry, or the Python implementation might change - so we should also document that we attempt to clear and restore the registry for |
#2586 might also be related. |
It looks like
pytest.mark.filterwarnings
doesn't work properly if a warning has already been shown only on python2.7. See the following example:This gives the following result:
On python 3.x this works fine. If I reverse the order of the tests, it works fine. Is there a workaround for this?
The text was updated successfully, but these errors were encountered: