Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix integration test setup script #215

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .ci/integration_test
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ function setup_etcdbrctl(){

function setup_awscli() {
echo "Installing awscli..."
(apt update || apt update) && apt install -y python-pip
apt update || apt update
echo "Installing python setuptools"
apt install -y python-setuptools
echo "Installing pip"
python /usr/lib/python2.7/dist-packages/easy_install.py pip
echo "Installing awscli tool"
pip install awscli
echo "Successfully installed awscli."
}
Expand Down