Skip to content

Commit 0b517dd

Browse files
committed
Add back deletion of test dirs.
1 parent acba50e commit 0b517dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def tearDown(self):
4040
time.sleep(3)
4141
except OSError as e:
4242
print(e)
43-
# if os.path.exists('workflows'):
44-
# shutil.rmtree('workflows')
43+
if os.path.exists('workflows'):
44+
shutil.rmtree('workflows')
4545
unittest.TestCase.tearDown(self)
4646

4747
def test_dockstore_md5sum(self):

0 commit comments

Comments
 (0)