summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-10-31 23:22:53 (GMT)
committerNed Deily <nad@acm.org>2011-10-31 23:22:53 (GMT)
commitd61f9d171579e22c65a8fe6347a39d7a5496dc42 (patch)
tree209d5fb321e6b5c0cb2a06b83d15b07e579d1b36 /Lib
parent2738a64621685ef852b8230d7d2b806af6052496 (diff)
parent316f573d9c96d9c15bea658a9e27aae6ebdf72e5 (diff)
downloadcpython-d61f9d171579e22c65a8fe6347a39d7a5496dc42.zip
cpython-d61f9d171579e22c65a8fe6347a39d7a5496dc42.tar.gz
cpython-d61f9d171579e22c65a8fe6347a39d7a5496dc42.tar.bz2
Issue #13304: Skip test case if user site-packages disabled (-s or
PYTHONNOUSERSITE). (Patch by Carl Meyer)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_site.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index 8168d7e..4d36e17 100644
--- a/Lib/test/test_site.py
+++ b/Lib/test/test_site.py
@@ -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)