tests: Fail if python36 is installed. Closes #794

This commit is contained in:
Alexander Todorov 2020-10-13 11:01:32 +03:00 committed by Alexander Todorov
parent 0e511a43c4
commit 12b8ec2f58

View file

@ -37,6 +37,13 @@ echo "List of installed packages:"
rpm -qa | sort rpm -qa | sort
echo "------------------------------------------------------------------------------" echo "------------------------------------------------------------------------------"
if rpm --quiet -q python36; then
echo -e "\n FAIL: python36 is installed, see #794 ..."
exit 1
else
echo -e "\n PASS: python36 not insalled"
fi
# Ensure cloud-init has completely finished on the instance. This ensures that # Ensure cloud-init has completely finished on the instance. This ensures that
# the instance is fully ready to go. # the instance is fully ready to go.
while true; do while true; do