9 lines
249 B
Python
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 |