diff options
author | Tarek Ziade <tarek@ziade.org> | 2011-05-21 21:05:19 (GMT) |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2011-05-21 21:05:19 (GMT) |
commit | 99d4623850610b425a13384852711ff8fef2341d (patch) | |
tree | 0e387201af7b41246961b74d3d737c453dbe286d /Lib/packaging/tests/test_uninstall.py | |
parent | cc243cc8085ffd7b184d52e9250b64d8ee3eb1a0 (diff) | |
download | cpython-99d4623850610b425a13384852711ff8fef2341d.zip cpython-99d4623850610b425a13384852711ff8fef2341d.tar.gz cpython-99d4623850610b425a13384852711ff8fef2341d.tar.bz2 |
deactivating one test under win32 for now
Diffstat (limited to 'Lib/packaging/tests/test_uninstall.py')
-rw-r--r-- | Lib/packaging/tests/test_uninstall.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/packaging/tests/test_uninstall.py b/Lib/packaging/tests/test_uninstall.py index ce345b6..2d0e896 100644 --- a/Lib/packaging/tests/test_uninstall.py +++ b/Lib/packaging/tests/test_uninstall.py @@ -82,6 +82,7 @@ class UninstallTestCase(support.TempdirManager, self.assertRaises(PackagingError, remove, 'Foo', paths=[self.root_dir]) + @unittest.skipIf(sys.platform == 'win32', 'deactivated for now') def test_uninstall(self): dist, install_lib = self.install_dist() self.assertIsFile(install_lib, 'foo', '__init__.py') |