1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-06-12 03:40:58 +02: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:
2019-11-14 23:37:25 +02:00
parent f0110d8e74
commit 7b1bc29a92

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