1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-06-26 16:13:46 +02:00
csv-metadata-quality/.travis.yml
Alan Orth 7b1bc29a92
.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.
2019-11-14 23:37:25 +02:00

12 lines
155 B
YAML

dist: bionic
language: python
python:
- "3.6"
- "3.7"
- "3.8"
install:
- "pip install -r requirements-dev.txt"
script: pytest
# vim: ts=2 sw=2 et