]> granicus.if.org Git - python/commitdiff
Issue #13304: Skip test case if user site-packages disabled (-s or
authorNed Deily <nad@acm.org>
Mon, 31 Oct 2011 23:14:52 +0000 (16:14 -0700)
committerNed Deily <nad@acm.org>
Mon, 31 Oct 2011 23:14:52 +0000 (16:14 -0700)
PYTHONNOUSERSITE).  (Patch by Carl Meyer)

Lib/test/test_site.py
Misc/ACKS
Misc/NEWS

index 1988ef3a6c2fa9f6841f436b165ae7ab8c9214af..9fd23fa13266b5ce45c33f34daab734b821baed7 100644 (file)
@@ -24,7 +24,7 @@ if "site" in sys.modules:
 else:
     raise unittest.SkipTest("importation of site.py suppressed")
 
-if not os.path.isdir(site.USER_SITE):
+if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
     # need to add user site directory for tests
     os.makedirs(site.USER_SITE)
     site.addsitedir(site.USER_SITE)
@@ -161,6 +161,8 @@ class HelperFunctionsTests(unittest.TestCase):
         finally:
             pth_file.cleanup()
 
+    @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
+                          "user-site (site.ENABLE_USER_SITE)")
     def test_s_option(self):
         usersite = site.USER_SITE
         self.assertIn(usersite, sys.path)
index 67570e3c2dea82cf7cad1ee7c14b73a2c6d858a6..97c961cb125712054c24639fd1c6629184c6f2b2 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -556,6 +556,7 @@ Lucas Prado Melo
 Ezio Melotti
 Brian Merrell
 Luke Mewburn
+Carl Meyer
 Mike Meyer
 Steven Miale
 Trent Mick
index 119355d974dd69e76bf50ab5ce7974148be0c502..be64128776a821880faf94f43460b7c401f0af14 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -328,6 +328,9 @@ Tools/Demos
 Tests
 -----
 
+- Issue #13304: Skip test case if user site-packages disabled (-s or
+  PYTHONNOUSERSITE).  (Patch by Carl Meyer)
+
 - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.
 
 - Issue #12821: Fix test_fcntl failures on OpenBSD 5.