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

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

index 8168d7ed92952a1d9405824665e1519f63a0d85d..4d36e171cd65fc8e9a092453fb7e64adef68c5cd 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)
@@ -157,6 +157,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 b32de2e08585fbbe7ac3a72cdd811463dbab64e3..5536ac60f552caa3584014509b04b3170a970d3a 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -601,6 +601,7 @@ Lucas Prado Melo
 Ezio Melotti
 Brian Merrell
 Luke Mewburn
+Carl Meyer
 Mike Meyer
 Steven Miale
 Trent Mick
index 61731966c906726b561b5046b097e88223c0c589..63a3790183ffa300eba748ea90a68aaa53f5f561 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -187,6 +187,9 @@ Library
 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.