-
Using Pytest version: 3.8.0 on ubuntu 18 and python3.6 I encountered an issue where a parametrized test uses objects which define a destructor (del) that is needed to be called between test instances of the same test function. I noticed that the garbage collector doesn't collect these objects unless I explicitly del them. I assume this might be because of some inner behavior of pytest, but this is highly misleading and has potential for problems. class Resource:
def __init__(self):
acquire_resource()
def __del__(self):
release_resource()
@pytest.mark.parametrize('param', (1,2,3))
def test_resource:
res = Resource() I except res to be collected when it is out of the scope of the function but it is not unless we call: Please let me know if this behavior is expected for some reason I missed. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 4 replies
-
It's expected, use context managers |
Beta Was this translation helpful? Give feedback.
-
if you're using |
Beta Was this translation helpful? Give feedback.
-
Just to complement the answers: this is not pytest specific, but how Python behaves; you will get the same behavior if you call |
Beta Was this translation helpful? Give feedback.
-
Thanks for the answers. Due to this being caused by garbage collector working in the background I found a possible workaround that might work: |
Beta Was this translation helpful? Give feedback.
-
I suggest to use an autouse fixture to ensure @pytest.fixture(autouse=True)
def ensure_gc():
gc.collect() |
Beta Was this translation helpful? Give feedback.
-
Thanks for the advice everyone |
Beta Was this translation helpful? Give feedback.
if you're using
__del__
for resource freeing you're depending on borderline-undefined-cpython-implementation-details. as @RonnyPfannschmidt indicates you should adjust your api to use a context manager