1
0
Fork 0

Improve a cli test resilience

This commit is contained in:
jvoisin 2018-09-06 11:32:29 +02:00
parent c8c27dcf38
commit 2e9adab86a
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ class TestReturnValue(unittest.TestCase):
class TestCleanFolder(unittest.TestCase):
def test_jpg(self):
os.mkdir('./tests/data/folder/')
try:
os.mkdir('./tests/data/folder/')
except FileExistsError:
pass
shutil.copy('./tests/data/dirty.jpg', './tests/data/folder/clean1.jpg')
shutil.copy('./tests/data/dirty.jpg', './tests/data/folder/clean2.jpg')