Check consistency of Pipfile.lock wrt to original requirements files

pull/650/head
David Núñez 2019-01-06 18:40:09 +01:00
parent 42dbea1f38
commit 1657026f29
1 changed files with 5 additions and 0 deletions

View File

@ -235,6 +235,11 @@ commands:
pipenv lock --clear --pre --dev --requirements > /tmp/pipenv-lock/dev-requirements.txt
- store_artifacts:
path: /tmp/pipenv-lock
- run:
name: Verify original requirements files wrt those generated with pipenv lock
command: |
diff requirements.txt /tmp/pipenv-lock/requirements.txt
diff dev-requirements.txt /tmp/pipenv-lock/dev-requirements.txt
check_nucypher_entrypoints:
description: "Ensure both the python API and CLI entrypoints are usable"