[8.2.x] unittest: fix class instances no longer released on test teardown since pytest 8.2.0

This commit is contained in:
Ran Benita 2024-05-26 10:34:11 +03:00 committed by pytest bot
parent 558e4fa71a
commit f7358aec28
3 changed files with 23 additions and 17 deletions

View File

@ -0,0 +1 @@
Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.

View File

@ -212,11 +212,12 @@ class TestCaseFunction(Function):
super().setup()
def teardown(self) -> None:
super().teardown()
if self._explicit_tearDown is not None:
self._explicit_tearDown()
self._explicit_tearDown = None
self._obj = None
self._instance = None
super().teardown()
def startTest(self, testcase: "unittest.TestCase") -> None:
pass

View File

@ -1,5 +1,4 @@
# mypy: allow-untyped-defs
import gc
import sys
from typing import List
@ -192,30 +191,35 @@ def test_teardown(pytester: Pytester) -> None:
def test_teardown_issue1649(pytester: Pytester) -> None:
"""
Are TestCase objects cleaned up? Often unittest TestCase objects set
attributes that are large and expensive during setUp.
attributes that are large and expensive during test run or setUp.
The TestCase will not be cleaned up if the test fails, because it
would then exist in the stackframe.
Regression test for #1649 (see also #12367).
"""
testpath = pytester.makepyfile(
pytester.makepyfile(
"""
import unittest
class TestCaseObjectsShouldBeCleanedUp(unittest.TestCase):
def setUp(self):
self.an_expensive_object = 1
def test_demo(self):
pass
import gc
"""
class TestCaseObjectsShouldBeCleanedUp(unittest.TestCase):
def test_expensive(self):
self.an_expensive_obj = object()
def test_is_it_still_alive(self):
gc.collect()
for obj in gc.get_objects():
if type(obj).__name__ == "TestCaseObjectsShouldBeCleanedUp":
assert not hasattr(obj, "an_expensive_obj")
break
else:
assert False, "Could not find TestCaseObjectsShouldBeCleanedUp instance"
"""
)
pytester.inline_run("-s", testpath)
gc.collect()
# Either already destroyed, or didn't run setUp.
for obj in gc.get_objects():
if type(obj).__name__ == "TestCaseObjectsShouldBeCleanedUp":
assert not hasattr(obj, "an_expensive_obj")
result = pytester.runpytest()
assert result.ret == ExitCode.OK
def test_unittest_skip_issue148(pytester: Pytester) -> None: