mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
#!/bin/bash -eux
|
|
|
|
source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))")
|
|
|
|
install_deps="${INSTALL_DEPS:-}"
|
|
|
|
cd "${source_root}"
|
|
|
|
if [ "${TOXENV}" = 'py24' ]; then
|
|
if [ "${install_deps}" != "" ]; then
|
|
add-apt-repository ppa:fkrull/deadsnakes && apt-get update -qq && apt-get install python2.4 -qq
|
|
fi
|
|
|
|
python2.4 -V
|
|
python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce|lxd|docker_common|azure_rm_common|vca|vmware|gcp|gcdns).py' lib/ansible/module_utils
|
|
else
|
|
if [ "${install_deps}" != "" ]; then
|
|
pip install -r "${source_root}/test/utils/shippable/sanity-requirements.txt" --upgrade
|
|
pip list
|
|
fi
|
|
|
|
xunit_dir="${source_root}/shippable/testresults"
|
|
coverage_dir="${source_root}/shippable/codecoverage"
|
|
|
|
mkdir -p "${xunit_dir}"
|
|
mkdir -p "${coverage_dir}"
|
|
|
|
xunit_file="${xunit_dir}/nosetests-xunit.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
|
|
|
|
source hacking/env-setup
|
|
python --version
|
|
ansible --version
|
|
ansible -m ping localhost
|
|
fi
|