1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-25 21:19:37 +02:00

.build.yml: Use pipenv run instead of pipenv shell

The latter creates a shell and of course it doesn't ever exit!
This commit is contained in:
2019-07-31 17:58:10 +03:00
parent 857492cd93
commit a6eba0fc1a

View File

@ -12,8 +12,8 @@ tasks:
pipenv run pytest
- testcli: |
cd csv-metadata-quality
pipenv shell pip install .
pipenv shell csv-metadata-quality -i data/test.csv -o /tmp/test.csv -u
pipenv run pip install .
pipenv run csv-metadata-quality -i data/test.csv -o /tmp/test.csv -u
environment:
PIPENV_NOSPIN: 'True'
PIPENV_HIDE_EMOJIS: 'True'