aboutsummaryrefslogtreecommitdiff
path: root/tests/script
diff options
context:
space:
mode:
authorJohn Whittington <git@jbrengineering.co.uk>2020-08-06 09:23:39 +0200
committerJohn Whittington <git@jbrengineering.co.uk>2020-08-06 09:29:32 +0200
commitbcce50471e264bcd8376b3c277600af629684083 (patch)
tree04046403cf64cf2867418bf9c44affe44e2cf798 /tests/script
parent517fe4a632b57a6c4ee2754bbb06470055427a5e (diff)
add python3 and pip3 to travis yml
Diffstat (limited to 'tests/script')
-rw-r--r--tests/script/bootstrap/common.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/script/bootstrap/common.sh b/tests/script/bootstrap/common.sh
index 20c1037..221dd21 100644
--- a/tests/script/bootstrap/common.sh
+++ b/tests/script/bootstrap/common.sh
@@ -167,13 +167,7 @@ if [ -z $COMMON_SOURCED ]; then
if ! command -v pip3 >/dev/null 2>&1; then
echo "Installing Pip..."
- if ! command -v easy_install3 >/dev/null 2>&1; then
- _install "python3-setuptools"
- fi
-
- if ! command -v easy_install3 >/dev/null 2>&1; then
- die "easy_install3 not available, can't install pip3"
- fi
+ _install "python3-pip"
$SUDO_CMD easy_install3 pip3
fi