mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
0587d59266
* Use Shippable image: drydock/u16pytall:master * Do not install python 3.6 on Shippable.
12 lines
234 B
Bash
Executable file
12 lines
234 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
declare -a args
|
|
IFS='/:' read -ra args <<< "${TEST}"
|
|
|
|
version="${args[1]}"
|
|
|
|
retry.py pip install tox --disable-pip-version-check
|
|
|
|
ansible-test units --color -v --tox --coverage --python "${version}"
|