14 lines
249 B
Python
14 lines
249 B
Python
|
""" pytest test configuration """
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from dozo.exiftool import _ExifToolProc
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def reset_singletons():
|
||
|
""" Need to clean up any ExifTool singletons between tests """
|
||
|
_ExifToolProc.instance = None
|
||
|
|
||
|
|