|
|
|
@ -12,7 +12,8 @@ if [ -s /tmp/network.txt ]; then
|
|
|
|
|
|
|
|
|
|
echo "Running network integration tests for multiple platforms concurrently."
|
|
|
|
|
|
|
|
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements \
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements ${COVERAGE:+"$COVERAGE"} \
|
|
|
|
|
--platform vyos/1.1.0 \
|
|
|
|
|
--platform ios/csr1000v \
|
|
|
|
|
|
|
|
|
@ -20,6 +21,7 @@ else
|
|
|
|
|
echo "No changes requiring integration tests specific to networking were detected."
|
|
|
|
|
echo "Running network integration tests for a single platform only."
|
|
|
|
|
|
|
|
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements \
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements ${COVERAGE:+"$COVERAGE"} \
|
|
|
|
|
--platform vyos/1.1.0
|
|
|
|
|
fi
|
|
|
|
|