Skip to content

Commit

Permalink
Merge pull request #65 from freedomofpress/pipenv-fix
Browse files Browse the repository at this point in the history
updates how we call pipenv to ensure depenendencies aren't updated
  • Loading branch information
redshiftzero authored Mar 18, 2019
2 parents 19d2e65 + b6b14f2 commit 533806d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run:
command: |
set -e
sudo pip install pipenv
pipenv install --keep-outdated --dev
pipenv sync --dev
- save_cache:
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
paths:
Expand All @@ -29,5 +30,5 @@ jobs:
- store_artifacts:
path: test-results
- run:
command: pipenv check --keep-outdated
command: pipenv check
destination: tr1
2 changes: 1 addition & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment. The second command is to enable the virtual environment.

::

pipenv install
pipenv sync --dev
pipenv shell


Expand Down

0 comments on commit 533806d

Please sign in to comment.