Skip to content

Commit ecd2b95

Browse files
committed
Merge remote-tracking branch 'origin/4.11'
2 parents d36e1a6 + 408cce4 commit ecd2b95

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tools/travis/before_install.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,9 @@ echo "<settings>
9898

9999
echo -e "\nInstalling some python packages: "
100100

101-
pip install --user --upgrade pip
102-
103101
for ((i=0;i<$RETRY_COUNT;i++))
104102
do
105-
pip install --user --upgrade lxml paramiko nose texttable ipmisim pyopenssl mock flask netaddr pylint pycodestyle six astroid > /tmp/piplog
103+
pip install --user --upgrade lxml paramiko nose texttable ipmisim pyopenssl pycrypto mock flask netaddr pylint pycodestyle six astroid > /tmp/piplog
106104
if [[ $? -eq 0 ]]; then
107105
echo -e "\npython packages installed successfully"
108106
break;

tools/travis/script.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ mkdir -p integration-test-results/component
2626
TESTS=($@)
2727
echo "Running tests: " ${TESTS[@]}
2828

29+
set -e
30+
2931
for suite in "${TESTS[@]}" ; do
3032
echo "Currently running test: $suite"
3133
nosetests --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;

0 commit comments

Comments
 (0)