Skip to content
This repository has been archived by the owner on Jan 7, 2024. It is now read-only.

Commit

Permalink
ci: install Pipenv from python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Feb 11, 2020
1 parent 2f15ab1 commit 449950d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Expand Up @@ -16,7 +16,8 @@ jobs:
name: Install dependencies
command: |
set -e
sudo pip install pipenv
pyenv global 3.5.2
pip3 install pipenv
pipenv install --dev --skip-lock
pipenv run pip freeze
- save_cache:
Expand All @@ -34,6 +35,7 @@ jobs:
- run:
name: Check for known CVEs
command: pipenv check

test-against-latest-api:
working_directory: ~/project
machine:
Expand All @@ -45,7 +47,8 @@ jobs:
- run:
name: Install dependencies
command: |
sudo pip install pipenv
pyenv global 3.5.2
pip3 install pipenv
pipenv install --dev --skip-lock
pipenv run pip freeze
- run:
Expand All @@ -56,7 +59,7 @@ jobs:
command: |
cd securedrop
NUM_SOURCES=5 make -C securedrop dev
background: true
background: true
- run: # As suggested in https://discuss.circleci.com/t/prevent-race-conditions-by-waiting-for-services-with-dockerize/11215
name: Install dockerize
command: |
Expand Down

0 comments on commit 449950d

Please sign in to comment.