diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-10 14:46:30 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-10 14:46:30 -0400 |
| commit | 2c21989354f8325cf7d7a6459f3721608b4c6bfc (patch) | |
| tree | 49fd4bd111f6f251a9be002f8459c06e56c0ad87 | |
| parent | 1531c8041c6b3f4e077d6edeb8305db2aacdbfb7 (diff) | |
| parent | 5d58d955b5f5dcafe6ec624b82b327ce1fe9bbfd (diff) | |
| download | python-setuptools-git-2c21989354f8325cf7d7a6459f3721608b4c6bfc.tar.gz | |
Merged in davidoff/setuptools-fix-failing-integration-test (pull request #68)
Fix failing integration (test_stevedore) test on windows because of an unreleased handle on the current directory
| -rw-r--r-- | setuptools/tests/test_integration.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py index 7144aa6c..8d6c1e55 100644 --- a/setuptools/tests/test_integration.py +++ b/setuptools/tests/test_integration.py @@ -25,6 +25,9 @@ def install_context(request, tmpdir, monkeypatch): install_dir = tmpdir.mkdir('install_dir') def fin(): + # undo the monkeypatch, particularly needed under + # windows because of kept handle on cwd + monkeypatch.undo() new_cwd.remove() user_base.remove() user_site.remove() |
