Skip to content
Commits on Source (2)
...@@ -41,7 +41,7 @@ Build Package: ...@@ -41,7 +41,7 @@ Build Package:
Pin: Pin:
# Pin dependencies in requirements.txt for reproducing pipeline results # Pin dependencies in requirements.txt for reproducing pipeline results
stage: test stage: build
extends: [.python] extends: [.python]
script: script:
- pip install --prefer-binary -e . - pip install --prefer-binary -e .
......
...@@ -70,9 +70,10 @@ Volumes = MutableSequence[Mount] ...@@ -70,9 +70,10 @@ Volumes = MutableSequence[Mount]
IPAddress = Union[ipaddress.IPv4Address, ipaddress.IPv6Address] IPAddress = Union[ipaddress.IPv4Address, ipaddress.IPv6Address]
DOCKER: Argument
match which("docker"): match which("docker"):
case None: case None:
DOCKER: Argument = DownloadableDocker().get_binary() DOCKER = DownloadableDocker().get_binary()
case str(path): case str(path):
DOCKER = Path(path) DOCKER = Path(path)
......