Finally fix all the get_system_environment issues

This commit is contained in:
Dave Halter
2018-04-15 16:43:53 +02:00
parent fe0ad8f1da
commit bd7c65d963
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ def environment(request):
if int(version) == py_version:
return get_default_environment()
return get_system_environment('python%s.%s' % tuple(version))
return get_system_environment(version[0] + '.' + version[1:])
@pytest.fixture(scope='session')