mirror of https://github.com/apache/cloudstack.git
Merge remote-tracking branch 'origin/4.11'
This commit is contained in:
commit
ecd2b95d49
|
|
@ -98,11 +98,9 @@ echo "<settings>
|
|||
|
||||
echo -e "\nInstalling some python packages: "
|
||||
|
||||
pip install --user --upgrade pip
|
||||
|
||||
for ((i=0;i<$RETRY_COUNT;i++))
|
||||
do
|
||||
pip install --user --upgrade lxml paramiko nose texttable ipmisim pyopenssl mock flask netaddr pylint pycodestyle six astroid > /tmp/piplog
|
||||
pip install --user --upgrade lxml paramiko nose texttable ipmisim pyopenssl pycrypto mock flask netaddr pylint pycodestyle six astroid > /tmp/piplog
|
||||
if [[ $? -eq 0 ]]; then
|
||||
echo -e "\npython packages installed successfully"
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ mkdir -p integration-test-results/component
|
|||
TESTS=($@)
|
||||
echo "Running tests: " ${TESTS[@]}
|
||||
|
||||
set -e
|
||||
|
||||
for suite in "${TESTS[@]}" ; do
|
||||
echo "Currently running test: $suite"
|
||||
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 ;
|
||||
|
|
|
|||
Loading…
Reference in New Issue