Skip to content

Commit

Permalink
Fix integration tests against installed Python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cytopia committed Nov 12, 2022
1 parent 4386f74 commit 890ef83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfiles/Dockerfile-tools
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ RUN set -eux \
else \
pip3 install --no-cache-dir --no-compile dnspython mitogen; \
fi \
\
&& pip3 install --no-cache-dir --no-compile \
jmespath \
\
&& find /usr/lib/ -name '__pycache__' -print0 | xargs -0 -n1 rm -rf \
&& find /usr/lib/ -name '*.pyc' -print0 | xargs -0 -n1 rm -rf

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ test-python-libs:
\
\
REQUIRED_BASE="cffi cryptography paramiko Jinja2 PyYAML"; \
REQUIRED_TOOLS="dnspython mitogen"; \
REQUIRED_TOOLS="dnspython mitogen jmespath"; \
REQUIRED_INFRA="docker docker-compose jsondiff pexpect psycopg2 pypsexec pymongo PyMySQL smbprotocol pywinrm"; \
REQUIRED_AZURE="azure\-.*"; \
REQUIRED_AWS="awscli botocore boto boto3"; \
Expand Down

0 comments on commit 890ef83

Please sign in to comment.