mirror of https://github.com/nucypher/nucypher.git
Removing requirements file lock matching check for now.
parent
f99bddad1f
commit
13e4d5e446
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue