|
@ -5,7 +5,7 @@ import sys |
|
|
import shlex |
|
|
import shlex |
|
|
|
|
|
|
|
|
from ..exceptions import NonZeroRetcode, RunnerError, ConfigException |
|
|
from ..exceptions import NonZeroRetcode, RunnerError, ConfigException |
|
|
from .pyutils import glob_command |
|
|
from .pyutils import PackageManager, glob_command |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Handle config like PyPiConfig |
|
|
# TODO: Handle config like PyPiConfig |
|
@ -15,6 +15,7 @@ class PythonRunner: |
|
|
self.workdir = config["workdir"] |
|
|
self.workdir = config["workdir"] |
|
|
self.virtual_dir = os.path.abspath(os.path.join(self.workdir, "venv")) |
|
|
self.virtual_dir = os.path.abspath(os.path.join(self.workdir, "venv")) |
|
|
self.config = config |
|
|
self.config = config |
|
|
|
|
|
PackageManager.getInstance().ensure("build") |
|
|
self.__init_venv() |
|
|
self.__init_venv() |
|
|
|
|
|
|
|
|
def __init_venv(self): |
|
|
def __init_venv(self): |
|
|