pipenv install in bitbucket-pipelines.yml
This commit is contained in:
parent
368203c425
commit
9511c51b86
|
|
@ -3,7 +3,7 @@
|
||||||
# Only use spaces to indent your .yml configuration.
|
# Only use spaces to indent your .yml configuration.
|
||||||
# -----
|
# -----
|
||||||
# You can specify a custom docker image from Docker Hub as your build environment.
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
||||||
image: python:3.5.1
|
image: python:3.6.6
|
||||||
|
|
||||||
pipelines:
|
pipelines:
|
||||||
default:
|
default:
|
||||||
|
|
@ -11,4 +11,4 @@ pipelines:
|
||||||
caches:
|
caches:
|
||||||
- pip
|
- pip
|
||||||
script: # Modify the commands below to build your repository.
|
script: # Modify the commands below to build your repository.
|
||||||
- pip install -r requirements.txt
|
- pipenv install --dev
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue