From 95f7871cc1f4781db6ebb22f23c952f8e082f468 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 15 Nov 2019 00:46:58 +0200 Subject: [PATCH] .travis.yml: Use vanilla pip --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 099aeea..0a21c81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ before_script: - createdb -U postgres -O dspacestatistics --encoding=UNICODE dspacestatistics - psql -U postgres -d dspacestatistics < tests/dspacestatistics.sql install: - - "pip install pipenv --upgrade-strategy=only-if-needed" - - "pipenv install --dev" + - "pip install -r requirements.txt" + - "pip install -r requirements-dev.txt" script: pytest env: - PIPENV_NOSPIN=True