From d246ba78c76e686e252a3b190710f7563d87c025 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 29 Nov 2017 13:09:25 -0800 Subject: [PATCH] Use pip3 if pip isn't available (#5277) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 55f18338d..d331dc980 100644 --- a/.travis.yml +++ b/.travis.yml @@ -125,7 +125,7 @@ addons: - libapache2-mod-wsgi - libapache2-mod-macro -install: "travis_retry pip install tox coveralls" +install: "travis_retry $(command -v pip || command -v pip3) install tox coveralls" script: - travis_retry tox - '[ -z "${BOULDER_INTEGRATION+x}" ] || (travis_retry tests/boulder-fetch.sh && tests/tox-boulder-integration.sh)'