summaryrefslogtreecommitdiff
path: root/test/utils/shippable/network.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils/shippable/network.sh')
-rwxr-xr-xtest/utils/shippable/network.sh12
1 files changed, 5 insertions, 7 deletions
diff --git a/test/utils/shippable/network.sh b/test/utils/shippable/network.sh
index f0e1905ae6..079a01df5b 100755
--- a/test/utils/shippable/network.sh
+++ b/test/utils/shippable/network.sh
@@ -15,7 +15,10 @@ 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
@@ -37,13 +40,8 @@ else
)
fi
-retry.py pip install tox --disable-pip-version-check
-
for version in "${python_versions[@]}"; do
- # clean up between test runs until we switch from --tox to --docker
- rm -rf ~/.ansible/{cp,pc,tmp}/
-
# shellcheck disable=SC2086
- ansible-test network-integration --color -v --retry-on-error "${target}" --tox --python "${version}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
- "${platforms[@]}"
+ ansible-test network-integration --color -v --retry-on-error "${target}" --docker default --python "${version}" \
+ ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} "${platforms[@]}"
done