mirror of https://github.com/python/cpython
Issue #13304: Skip test case if user site-packages disabled (-s or
PYTHONNOUSERSITE). (Patch by Carl Meyer)
This commit is contained in:
parent
ce260142c6
commit
316f573d9c
|
@ -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)
|
||||
|
|
|
@ -601,6 +601,7 @@ Lucas Prado Melo
|
|||
Ezio Melotti
|
||||
Brian Merrell
|
||||
Luke Mewburn
|
||||
Carl Meyer
|
||||
Mike Meyer
|
||||
Steven Miale
|
||||
Trent Mick
|
||||
|
|
Loading…
Reference in New Issue