1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-11-22 22:05:03 +01:00

.travis.yml: Try using pip instead of pipenv

The Pipfile knows it was created with Python 3.8, yet we're running
with multiple Python versions on Travis. I'm curious if would work
better to use pip to install dependencies instead of pipenv in this
case.
This commit is contained in:
Alan Orth 2019-11-14 23:37:25 +02:00
parent f0110d8e74
commit 7b1bc29a92
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -5,8 +5,7 @@ python:
- "3.7"
- "3.8"
install:
- "pip install pipenv --upgrade-strategy=only-if-needed"
- "pipenv install --dev"
- "pip install -r requirements-dev.txt"
script: pytest
# vim: ts=2 sw=2 et