From 9a9486878f01e21b86e7a2ab317bfe10f3352665 Mon Sep 17 00:00:00 2001 From: Philip Thiem Date: Fri, 5 Jul 2013 10:43:04 -0500 Subject: some odd errors.. not sure what still has the directory in use.. --HG-- extra : rebase_source : c3c3369ee8fc51f6625e8e59552ccf01f5332887 --- setuptools/tests/test_svn.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'setuptools/tests/test_svn.py') diff --git a/setuptools/tests/test_svn.py b/setuptools/tests/test_svn.py index 8b73452f..6036f85c 100644 --- a/setuptools/tests/test_svn.py +++ b/setuptools/tests/test_svn.py @@ -127,8 +127,12 @@ class TestSvn_1_7(unittest.TestCase): os.chdir(os.path.join(self.temp_dir, 'svn17_example')) def tearDown(self): - os.chdir(self.old_cwd) - _remove_dir(self.temp_dir) + try: + os.chdir(self.old_cwd) + _remove_dir(self.temp_dir) + except OSError: + #sigh? + pass def _chk_skip(self): if self.version_err is not None: -- cgit v1.2.3