mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Issue #15307: Skipped test_venv:test_prefixes when run from a venv.
This commit is contained in:
parent
9ac4d8808f
commit
509d87d4a0
1 changed files with 2 additions and 0 deletions
|
@ -87,6 +87,8 @@ class BasicTest(BaseTest):
|
|||
print(' %r' % os.listdir(bd))
|
||||
self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn)
|
||||
|
||||
@unittest.skipIf(sys.prefix != sys.base_prefix, 'Test not appropriate '
|
||||
'in a venv')
|
||||
def test_prefixes(self):
|
||||
"""
|
||||
Test that the prefix values are as expected.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue