Travis reported another false negative, if paramiko was present but version too low for marvin, nosetests wouldn't run and result would be success

Signed-off-by: Daan Hoogland <daan@onecht.net>
This commit is contained in:
Rafael da Fonseca 2015-06-20 00:47:50 +02:00 committed by Daan Hoogland
parent f7a8d8e657
commit 5386e0f6b5
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ echo -e "\nInstalling some python packages: "
for ((i=0;i<$RETRY_COUNT;i++))
do
sudo pip install lxml texttable > /tmp/piplog
sudo pip install --upgrade paramiko >> /tmp/piplog
if [[ $? -eq 0 ]]; then
echo -e "\npython packages installed successfully"
break;