test_sysconfig:test_libdirs
def test_libdirs():
# Make sure the schemes are all valid, issue 3954
schemes = sysconfig.get_scheme_names()
names = ["stdlib", "platstdlib", "platlib", "purelib"]
candidates = {sysconfig.get_path(name, scheme) for scheme in schemes for name in names}
paths = [path for path in candidates if path in sys.path]
if sys.platform == 'win32':
> assert len(paths) == 0
E AssertionError: assert 1 == 0
E + where 1 = len(['d:\\pypy_stuff\\buildbot64\\slave\\pypy-c-jit-win-x86-64\\venv\\pypy-venv\\Lib\\site-packages'])
..\build\extra_tests\test_sysconfig.py:12: AssertionError
builder: pypy-c-jit-win-x86-64 build #2423+
test: test_sysconfig:test_libdirs