.travis.yml: Use vanilla pip

This commit is contained in:
Alan Orth 2019-11-15 00:46:58 +02:00
parent 3bc07027e5
commit 95f7871cc1
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -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