Lines Matching refs:scheme
98 scheme = get_paths()
102 scheme = sorted(scheme.items())
103 self.assertEqual(scheme, wanted)
111 for scheme in _INSTALL_SCHEMES:
112 for name in _INSTALL_SCHEMES[scheme]:
113 expected = _INSTALL_SCHEMES[scheme][name].format(**config_vars)
115 os.path.normpath(get_path(name, scheme)),
146 # before bpo-45413, here we assert the posix_venv scheme does not regress
158 self.assertEqual(binpath, sysconfig.get_path('scripts', scheme='posix_venv'))
159 self.assertEqual(libpath, sysconfig.get_path('purelib', scheme='posix_venv'))
163 sysconfig_includedir = sysconfig.get_path('include', scheme='posix_venv')
168 # before bpo-45413, here we assert the posix_venv scheme does not regress
178 self.assertEqual(binpath, sysconfig.get_path('scripts', scheme='nt_venv'))
179 self.assertEqual(incpath, sysconfig.get_path('include', scheme='nt_venv'))
180 self.assertEqual(libpath, sysconfig.get_path('purelib', scheme='nt_venv'))
185 sysconfig.get_path('scripts', scheme='venv'),
186 sysconfig.get_path('scripts', scheme='nt_venv')
189 sysconfig.get_path('include', scheme='venv'),
190 sysconfig.get_path('include', scheme='nt_venv')
193 sysconfig.get_path('purelib', scheme='venv'),
194 sysconfig.get_path('purelib', scheme='nt_venv')
198 sysconfig.get_path('scripts', scheme='venv'),
199 sysconfig.get_path('scripts', scheme='posix_venv')
202 sysconfig.get_path('include', scheme='venv'),
203 sysconfig.get_path('include', scheme='posix_venv')
206 sysconfig.get_path('purelib', scheme='venv'),
207 sysconfig.get_path('purelib', scheme='posix_venv')
352 # Issue #8759: make sure the posix scheme for the users
357 # the global scheme mirrors the distinction between prefix and
358 # exec-prefix but not the user scheme, so we have to adapt the paths