Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r1602:957d8e48d4a4
Date: 2014-12-24 17:40 +0100
http://bitbucket.org/cffi/cffi/changeset/957d8e48d4a4/

Log:    Ignore errors here

diff --git a/testing/test_zdistutils.py b/testing/test_zdistutils.py
--- a/testing/test_zdistutils.py
+++ b/testing/test_zdistutils.py
@@ -17,7 +17,7 @@
 
     def teardown_class(self):
         if udir.isdir():
-            udir.remove()
+            udir.remove(ignore_errors=True)
 
     def test_locate_engine_class(self):
         cls = _locate_engine_class(FFI(), self.generic)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to