1
0
forked from VimPlug/jedi

Try to add Github Actions

This commit is contained in:
Dave Halter
2020-12-26 01:03:03 +01:00
parent 8740ff2691
commit 239a3730a6
2 changed files with 70 additions and 1 deletions

View File

@@ -100,7 +100,9 @@ def environment(request):
if request.config.option.interpreter_env or version == 'interpreter':
return InterpreterEnvironment()
return get_system_environment(version[0] + '.' + version[1:])
if '.' not in version:
version = version[0] + '.' + version[1:]
return get_system_environment(version)
@pytest.fixture(scope='session')