1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2024-06-26 16:13:46 +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:
Alan Orth 2019-07-31 17:58:10 +03:00
parent 857492cd93
commit a6eba0fc1a
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

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'