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
In unittest.TestCase, tearDown() is always called if setUp() is successful. It is only not called when setUp() fails. In IsolatedAsyncioTestCase, which is a subclass of TestCase, tearDown() is not called if setUp() is successful, but asyncSetUp() fails. I think is a problem.