Files
osxphotos/tests/conftest.py
2020-05-23 09:34:04 -07:00

9 lines
249 B
Python

""" pytest test configuration """
import pytest
from osxphotos.exiftool import _ExifToolProc
@pytest.fixture(autouse=True)
def reset_singletons():
""" Need to clean up any ExifTool singletons between tests """
_ExifToolProc.instance = None