mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Test ansible version and ping during sanity tests. (#16441)
This commit is contained in:
@@ -15,7 +15,14 @@ if [ "${TOXENV}" = 'py24' ]; then
|
|||||||
python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce|docker_common|azure_rm_common|vca|vmware).py' lib/ansible/module_utils
|
python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce|docker_common|azure_rm_common|vca|vmware).py' lib/ansible/module_utils
|
||||||
else
|
else
|
||||||
if [ "${install_deps}" != "" ]; then
|
if [ "${install_deps}" != "" ]; then
|
||||||
pip install tox
|
pip install \
|
||||||
|
tox \
|
||||||
|
pyyaml \
|
||||||
|
jinja2 \
|
||||||
|
setuptools \
|
||||||
|
--upgrade
|
||||||
|
|
||||||
|
pip list
|
||||||
fi
|
fi
|
||||||
|
|
||||||
xunit_dir="${source_root}/shippable/testresults"
|
xunit_dir="${source_root}/shippable/testresults"
|
||||||
@@ -28,4 +35,9 @@ else
|
|||||||
coverage_file="${coverage_dir}/nosetests-coverage.xml"
|
coverage_file="${coverage_dir}/nosetests-coverage.xml"
|
||||||
|
|
||||||
TOX_TESTENV_PASSENV=NOSETESTS NOSETESTS="nosetests --with-xunit --xunit-file='${xunit_file}' --cover-xml --cover-xml-file='${coverage_file}'" tox
|
TOX_TESTENV_PASSENV=NOSETESTS NOSETESTS="nosetests --with-xunit --xunit-file='${xunit_file}' --cover-xml --cover-xml-file='${coverage_file}'" tox
|
||||||
|
|
||||||
|
source hacking/env-setup
|
||||||
|
python --version
|
||||||
|
ansible --version
|
||||||
|
ansible -m ping localhost
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user