You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a follow up of kivy#1982
In here we do:
- Move from `__new__` to `__init__` for `BaseTestForMakeRecipe` ([discussed at here](kivy#1982 (comment)))
- Convert cls attributes to instance attributes ([discussed at here](kivy#1982 (comment)))
- Remove `mock` dependency for py3 tests (Because, as per Python 3.3+, `mock` it's a built-in-module). (Unfortunately we still will have a couple of `import mock` entries that we cannot remove until we completely remove python2 from our tests)
* [test] From `__new__` to `__init__` for `BaseTestForMakeRecipe`
* [test] Remove mock dependency for py3 tests
Because, as per Python 3.3+, `mock` it's a built-in-module
* [test] Convert cls attributes to instance attributes
Because we may have some side effects without willing, considering that cls attributes are shared between instances.
0 commit comments