Python Add test for NIX_PYTHONPREFIX
This commit is contained in:
parent
d88a7735d2
commit
05571d3059
@ -36,6 +36,7 @@ let
|
||||
is_venv = "True";
|
||||
is_nixenv = "False";
|
||||
};
|
||||
|
||||
# Venv built using Python Nix environment (python.buildEnv)
|
||||
# TODO: Cannot create venv from a nix env
|
||||
# Error: Command '['/nix/store/ddc8nqx73pda86ibvhzdmvdsqmwnbjf7-python3-3.7.6-venv/bin/python3.7', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.
|
||||
|
@ -35,7 +35,7 @@ class TestCasePython(unittest.TestCase):
|
||||
def test_site_prefix(self):
|
||||
self.assertTrue(sys.prefix in site.PREFIXES)
|
||||
|
||||
@unittest.skipIf(sys.version_info.major==2, "Python 2 does not have base_prefix")
|
||||
@unittest.skipIf(IS_PYPY or sys.version_info.major==2, "Python 2 does not have base_prefix")
|
||||
def test_base_prefix(self):
|
||||
if IS_VENV:
|
||||
self.assertNotEqual(sys.prefix, sys.base_prefix)
|
||||
|
Loading…
Reference in New Issue
Block a user