-
Notifications
You must be signed in to change notification settings - Fork 127
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
Unit tests failing for python3.10 #712
Comments
So, this probably means that the tests are not properly isolated. All three errors look like either a mock failure of some kind. |
That is right. I just looked at the |
Indeed, the correct thing to do is to ensure that all of the tests are isolated so that run order does not affect the tests. Some tests may be leaking which means that mocking is not done in those (currently) not failing tests. |
Unit tests are failing for the python3.10 as it is possible to see here and in this pastebin.
Apparently, the sequence of the tests that run has changed from one python version to another and this might break some tests.
The text was updated successfully, but these errors were encountered: