Added --update to CLI export; reference issue #100

This commit is contained in:
Rhet Turnbull
2020-05-23 09:34:04 -07:00
parent 8c4fe40aa6
commit b1171e96cc
10 changed files with 2072 additions and 622 deletions

9
tests/conftest.py Normal file
View File

@@ -0,0 +1,9 @@
""" 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