Skip to content

Commit

Permalink
Remove pyrax from testing Dockerfile for ubuntu 16.04 (#65)
Browse files Browse the repository at this point in the history
* Fix pbr dependency in Travis

Travis is failing due to pbr being not installed during the installation
of other packages. This commit tries to fix it by installing pbr alone
first, and then installing the remaining packages.

* Remove pyrax from testing

pyrax seems to be the package bringing the dependency pbr<2.0 that is
causing Travis to fail. Given that this has been added many years ago,
it might be that it is not needed any longer.
  • Loading branch information
matteopozza authored Aug 4, 2021
1 parent fc7d132 commit bd6eb88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pip-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN \
apt-get install -y libyaml-dev python-dev python-jinja2 python-httplib2 python-keyczar python-paramiko python-setuptools python3-setuptools && \
apt-get install -y libffi-dev libssl-dev openssh-client && \
pip install --upgrade "pip < 21.0" && \
pip install pyrax pysphere boto passlib dnspython
pip install pysphere boto passlib dnspython

RUN mkdir /etc/ansible/
RUN echo -e '[local]\nlocalhost' > /etc/ansible/hosts
Expand Down

0 comments on commit bd6eb88

Please sign in to comment.