summaryrefslogtreecommitdiff
path: root/test/test.py
diff options
context:
space:
mode:
authorjvoisin2015-11-15 14:45:03 +0100
committerjvoisin2015-11-15 14:45:03 +0100
commiteb86ee003beaae68039ec0739a7d72c46c595175 (patch)
tree3de8a9177215a5b0f79f7be858cf68be1225a9bd /test/test.py
parentd054e313d7d83ec0089f7e0efe6b8a988fe99b3a (diff)
Fix tests borken by the absence of exiftool
Diffstat (limited to 'test/test.py')
-rw-r--r--test/test.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.py b/test/test.py
index e45912e..bd688c1 100644
--- a/test/test.py
+++ b/test/test.py
@@ -41,6 +41,10 @@ except ImportError:
41 FILE_LIST.remove(('clean é.mp3', 'dirty é.mp3')) 41 FILE_LIST.remove(('clean é.mp3', 'dirty é.mp3'))
42 FILE_LIST.remove(('clean é.flac', 'dirty é.flac')) 42 FILE_LIST.remove(('clean é.flac', 'dirty é.flac'))
43 43
44try: # exiftool
45 subprocess.check_output(['exiftool', '-ver'])
46except:
47 FILE_LIST.remove(('clean é.tif', 'dirty é.tif'))
44 48
45class MATTest(unittest.TestCase): 49class MATTest(unittest.TestCase):
46 """ 50 """