From: Brett Cannon Date: Tue, 8 Jun 2004 18:25:48 +0000 (+0000) Subject: Removed test_sitepackages test. Skip discovered that it only passed if Python X-Git-Tag: v2.4a1~222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ccc9a99dfbb2575daa8e01a8e8e3531b61a9d60;p=python Removed test_sitepackages test. Skip discovered that it only passed if Python had already been installed previously. --- diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index ee15b1eeda..eb9d4a3c6e 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -141,14 +141,6 @@ class ImportSideEffectTests(unittest.TestCase): # XXX: implement pass - def test_sitepackages(self): - # There should be a path that ends in site-packages - for path in sys.path: - if path.endswith("site-packages"): - break - else: - self.fail("'site-packages' directory missing'") - def test_setting_quit(self): # 'quit' and 'exit' should be injected into __builtin__ self.failUnless(hasattr(__builtin__, "quit"))