From c76d69eb20ff4fa8fe9ab48a26fccd9d73e05001 Mon Sep 17 00:00:00 2001 From: matejcik Date: Thu, 8 Aug 2019 14:17:52 +0200 Subject: [PATCH] ci: use pipenv sync --- .gitlab-ci.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c14effd41..08fc61656 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ stages: - test before_script: - - pipenv install + - pipenv sync include: - ci/environment.yml diff --git a/.travis.yml b/.travis.yml index 505979fe7..fda243a4a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ env: install: - pip install --upgrade pip wheel setuptools - pip install pipenv - - pipenv install + - pipenv sync # make sure pipenv is installable without protobuf - install protoc later - curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" - unzip "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" -d protoc