persistent-docker / tests /conftest.py
Anthony Truchet
feat: add quality tooling around Poetry
aed86da
Raw
History Blame Contribute Delete
185 Bytes
# conftest.py
import pytest
@pytest.fixture
def unstub():
"""Ensure calls patched by mockito are cleared after each test"""
from mockito import unstub
yield
unstub()