Skip to content

Commit a6b7585

Browse files
committed
TST: ignore remove file errors
1 parent 7964cd5 commit a6b7585

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/io/tests/test_pytables.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ def setUp(self):
3737

3838
def tearDown(self):
3939
self.store.close()
40-
os.remove(self.path)
40+
try:
41+
os.remove(self.path)
42+
except:
43+
pass
4144

4245
def test_factory_fun(self):
4346
try:

0 commit comments

Comments
 (0)