From 60b1f9921d7ffe1c20412c9c48a81c14948a3b28 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 14 May 2019 12:01:40 -0700 Subject: [PATCH] Don't use pip wrapper script in CI. --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index f533b7dd4..5f94096bc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,8 @@ pipeline: image: python:${PYTHON_VERSION}-alpine${ALPINE_VERSION} pull: true commands: - - scripts/pip install tox==3.10.0 + - python -m pip install --upgrade pip==19.1.1 + - pip install tox==3.10.0 - tox - apk add --no-cache borgbackup - tox -e end-to-end