Removing requirements file lock matching check for now.

pull/674/head
jMyles 2019-01-22 15:30:17 -05:00
parent f99bddad1f
commit 13e4d5e446
1 changed files with 13 additions and 13 deletions

View File

@ -237,19 +237,19 @@ commands:
- run:
name: Check NuCypher CLI Entrypoint
command: pipenv run nucypher --help
- run:
name: Store requirements.txt and dev-requirements.txt generated with pipenv lock
command: |
mkdir /tmp/pipenv-lock
pipenv lock --clear --pre --requirements > /tmp/pipenv-lock/requirements.txt
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
# - run:
# name: Store requirements.txt and dev-requirements.txt generated with pipenv lock
# command: |
# mkdir /tmp/pipenv-lock
# pipenv lock --clear --pre --requirements > /tmp/pipenv-lock/requirements.txt
# 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"