cf1337ca9a
* Use correct pip version in ansible-test. * Add git fallback for validate-modules. * Run sanity tests in a docker container. * Use correct python version for sanity tests. * Pin docker completion images and add default. * Split pylint execution into multiple contexts. * Only test .py files in use-argspec-type-path test. * Accept identical python interpeter name or binary. * Switch cloud tests to default container. * Remove unused extras from pip install. * Filter out empty pip commands. * Don't force running of pip list. * Support delegation for windows and network tests. * Fix ansible-test python version usage. * Fix ansible-test python version skipping. * Use absolute path for log in ansible-test. * Run vyos_command test on python 3. * Fix windows/network instance persistence. * Add `test/cache` dir to classification. * Enable more python versions for network tests. * Fix cs_router test.
47 lines
1.3 KiB
Bash
Executable file
47 lines
1.3 KiB
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} 2>&1 | { grep ' network-integration: .* (targeted)$' || true; } > /tmp/network.txt
|
|
|
|
if [ "${COVERAGE}" ]; then
|
|
# when on-demand coverage is enabled, force tests to run for all network platforms
|
|
echo "coverage" > /tmp/network.txt
|
|
fi
|
|
|
|
target="network/ci/"
|
|
|
|
# python versions to test in order
|
|
# all versions run full tests
|
|
python_versions=(
|
|
2.6
|
|
2.7
|
|
3.5
|
|
3.6
|
|
)
|
|
|
|
if [ -s /tmp/network.txt ]; then
|
|
echo "Detected changes requiring integration tests specific to networking:"
|
|
cat /tmp/network.txt
|
|
|
|
echo "Running network integration tests for multiple platforms concurrently."
|
|
|
|
platforms=(
|
|
--platform vyos/1.1.0
|
|
--platform ios/csr1000v
|
|
)
|
|
else
|
|
echo "No changes requiring integration tests specific to networking were detected."
|
|
echo "Running network integration tests for a single platform only."
|
|
|
|
platforms=(
|
|
--platform vyos/1.1.0
|
|
)
|
|
fi
|
|
|
|
for version in "${python_versions[@]}"; do
|
|
# shellcheck disable=SC2086
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --docker default --python "${version}" \
|
|
${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} "${platforms[@]}"
|
|
done
|