Skip to content
GitLab
Explore
Sign in
Commits on Source (2)
Fix for Python 3.10 issue with annotations
· 45203873
Dom Sekotill
authored
Jun 18, 2024
45203873
Move CI Pin job to build stage
· ca929f99
Dom Sekotill
authored
Jun 18, 2024
ca929f99
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
ca929f99
...
...
@@ -41,7 +41,7 @@ Build Package:
Pin
:
# Pin dependencies in requirements.txt for reproducing pipeline results
stage
:
test
stage
:
build
extends
:
[
.python
]
script
:
-
pip install --prefer-binary -e .
...
...
behave_utils/docker.py
View file @
ca929f99
...
...
@@ -70,9 +70,10 @@ Volumes = MutableSequence[Mount]
IPAddress
=
Union
[
ipaddress
.
IPv4Address
,
ipaddress
.
IPv6Address
]
DOCKER
:
Argument
match
which
(
"
docker
"
):
case
None
:
DOCKER
:
Argument
=
DownloadableDocker
().
get_binary
()
DOCKER
=
DownloadableDocker
().
get_binary
()
case
str
(
path
):
DOCKER
=
Path
(
path
)
...
...