Skip to content

Commit 7d7539a

Browse files
committed
remove tar tmp files
1 parent c6b71b7 commit 7d7539a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_tarfs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def make_fs(self):
6060

6161
def destroy_fs(self, fs):
6262
fs.close()
63+
os.remove(fs._tar_file)
6364
del fs._tar_file
6465

6566

@@ -92,6 +93,7 @@ def make_fs(self):
9293

9394
def destroy_fs(self, fs):
9495
fs.close()
96+
os.remove(fs._tar_file)
9597
del fs._tar_file
9698

9799
def assert_is_bzip(self):

0 commit comments

Comments
 (0)