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}"
|