mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-16 22:01:15 +00:00
* Use Shippable image: drydock/u16pytall:master * Do not install python 3.6 on Shippable.
13 lines
234 B
Bash
Executable File
13 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}"
|