rafaelweingartner commented on a change in pull request #2576: Fix Python code checkstyle execute by "systemvm\test\runtests.sh" URL: https://github.com/apache/cloudstack/pull/2576#discussion_r182029928
########## File path: tools/travis/before_install.sh ########## @@ -97,10 +99,11 @@ echo "<settings> echo -e "\nInstalling some python packages: " pip install --user --upgrade pip +pip uninstall pylint for ((i=0;i<$RETRY_COUNT;i++)) do - pip install --user --upgrade lxml paramiko nose texttable ipmisim pyopenssl mock flask netaddr pylint pep8 > /tmp/piplog + pip install --user --upgrade lxml paramiko texttable ipmisim pyopenssl mock flask netaddr nose pylint pycodestyle six astroid Markdown > /tmp/piplog Review comment: `Markdown` I added because I was getting a message saying that it is not installed, but some of these dependencies might require it. That is why I installed. `six and astroid` seems to be used by `pylint` and `nose`. And I think that is the problem we were having. There is an issue regarding these dependencies versions, which are not automatically upgraded when you install some library the relies on them. `¯\_(ツ)_/¯` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
