From 2134f8dcfd70c182cc57c247151498b6e15e2356 Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev Date: Tue, 28 Apr 2020 22:19:50 +0300 Subject: [PATCH] remove python from tests --- images/linux/scripts/installers/python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/python.sh b/images/linux/scripts/installers/python.sh index f17a8f32e..4f6bf45d8 100644 --- a/images/linux/scripts/installers/python.sh +++ b/images/linux/scripts/installers/python.sh @@ -12,7 +12,7 @@ apt-get install -y --no-install-recommends python3 python3-dev python3-pip # 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 pip python3 pip3; do +for cmd in python python3 pip3; do if ! command -v $cmd; then echo "$cmd was not installed or not found on PATH" exit 1