diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-05 10:43:04 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-05 10:43:04 -0500 |
commit | 9a9486878f01e21b86e7a2ab317bfe10f3352665 (patch) | |
tree | 0bf57930e404d72a9c7e8f3764edc0f056e05f84 /setuptools/tests/test_svn.py | |
parent | 0c39ec94423bda77dc46dc6c82294cdfd7447f89 (diff) | |
download | external_python_setuptools-9a9486878f01e21b86e7a2ab317bfe10f3352665.tar.gz external_python_setuptools-9a9486878f01e21b86e7a2ab317bfe10f3352665.tar.bz2 external_python_setuptools-9a9486878f01e21b86e7a2ab317bfe10f3352665.zip |
some odd errors.. not sure what still has the directory in use..
--HG--
extra : rebase_source : c3c3369ee8fc51f6625e8e59552ccf01f5332887
Diffstat (limited to 'setuptools/tests/test_svn.py')
-rw-r--r-- | setuptools/tests/test_svn.py | 8 |
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: |