Skip to content

Commit

Permalink
ci(azure-pipelines): Install dependencies on the system and not on a …
Browse files Browse the repository at this point in the history
…python virtual environment
  • Loading branch information
xaviml committed Jul 15, 2020
1 parent 07b8dc0 commit 0a2bc5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ steps:
archiveFile: '$(Build.ArtifactStagingDirectory)/controllerx.zip'
- script: pip install pipenv
displayName: 'Install pipenv'
- script: pipenv install --dev --system
- script: pipenv lock --dev
displayName: 'Lock dependencies'
- script: pipenv install --system --deploy --dev
displayName: 'Install dependencies'
- script: black apps/controllerx tests --check
displayName: Formatter (black)
Expand Down

0 comments on commit 0a2bc5c

Please sign in to comment.