fix: add missing dependencies
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Robert Kaussow 2023-09-20 17:14:46 +02:00
parent 60c5e55360
commit f83290177c
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 4 additions and 2 deletions

View File

@ -34,10 +34,10 @@ RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl
MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \
if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \
echo "Installing molecule version '$MOLECULE_VERSION' ..." && \
pip install -qq --no-cache-dir molecule[docker,test]=="$MOLECULE_VERSION"; \
pip install -qq --no-cache-dir molecule=="$MOLECULE_VERSION" molecule-plugins[docker]; \
else \
echo "Installing latest molecule ..." && \
pip install -qq --no-cache-dir molecule[docker,test]; \
pip install -qq --no-cache-dir molecule molecule-plugins[docker]; \
fi && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \

View File

@ -9,3 +9,5 @@ hcloud
pycrypto
flaky
passlib
pytest
pytest-testinfra