Skip to content

Commit f63a08e

Browse files
authored
chore: fix tests with python 3.7 (#3248)
1 parent 1b05470 commit f63a08e

File tree

3 files changed

+253
-95
lines changed

3 files changed

+253
-95
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN if [ -n "${CLEAN_INSTALL}" ]; then git reset --hard ; fi && \
2727
make download-templates
2828

2929
ENV POETRY_HOME=/opt/poetry
30-
# hadolint ignore=DL4006
30+
# hadolint ignore=DL4006,SC2086
3131
RUN if [ -n "${BUILD_CORE_SERVICE}" ]; then export EXT_BUILD="-E service" ; fi && \
3232
mkdir -p /opt/poetry && \
3333
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.3.1 python3 - && \
@@ -36,7 +36,7 @@ RUN if [ -n "${BUILD_CORE_SERVICE}" ]; then export EXT_BUILD="-E service" ; fi &
3636
/opt/poetry/bin/poetry config virtualenvs.options.no-setuptools true && \
3737
/opt/poetry/bin/poetry config virtualenvs.options.no-pip true && \
3838
/opt/poetry/bin/poetry self add "poetry-dynamic-versioning[plugin]" && \
39-
/opt/poetry/bin/poetry install "${EXT_BUILD}" -E toil
39+
/opt/poetry/bin/poetry install ${EXT_BUILD} -E toil
4040

4141
FROM base
4242
ARG BUILD_CORE_SERVICE

0 commit comments

Comments
 (0)