Add pypy and pypy3 to PATH during tools cache download

This commit is contained in:
Konrad Pabjan
2019-12-17 15:56:28 -05:00
parent 0238175c96
commit 956716dc9a
3 changed files with 19 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ apt-get install -y --no-install-recommends python python-dev python-pip python3
# Run tests to determine that the software installed as expected
echo "Testing to make sure that script performed as expected, and basic scenarios work"
for cmd in python python3; do
for cmd in python pip python3 pip3; do
if ! command -v $cmd; then
echo "$cmd was not installed or not found on PATH"
exit 1