summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Thiem <ptthiem@gmail.com>2013-07-05 10:43:04 -0500
committerPhilip Thiem <ptthiem@gmail.com>2013-07-05 10:43:04 -0500
commite0d578c459647953a380e0c431c305a5fa14fca6 (patch)
tree7969f3fdc36f19d84a999a716441205950a6baa9
parentc2fbfb77c84c1d668313c0cce66cbdd0765bbb62 (diff)
downloadpython-setuptools-bitbucket-e0d578c459647953a380e0c431c305a5fa14fca6.tar.gz
some odd errors.. not sure what still has the directory in use..
-rw-r--r--setuptools/tests/test_svn.py8
1 files changed, 6 insertions, 2 deletions
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: