You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/06/21 15:14:09 UTC

[13/24] git commit: updated refs/heads/master to 6fd49e4

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 <da...@onecht.net>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5386e0f6
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5386e0f6
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5386e0f6

Branch: refs/heads/master
Commit: 5386e0f6b57939f5cfc629934a78559f37d12da2
Parents: f7a8d8e
Author: Rafael da Fonseca <rs...@gmail.com>
Authored: Sat Jun 20 00:47:50 2015 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Sun Jun 21 15:13:26 2015 +0200

----------------------------------------------------------------------
 tools/travis/before_install.sh | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5386e0f6/tools/travis/before_install.sh
----------------------------------------------------------------------
diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh
index 78faa3c..95c0d3e 100755
--- a/tools/travis/before_install.sh
+++ b/tools/travis/before_install.sh
@@ -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;