Fix invalid YAML
This commit is contained in:
parent
a91edfafb3
commit
5774715502
|
|
@ -16,20 +16,20 @@ definitions:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
|
||||||
aliases:
|
aliases:
|
||||||
- &unittest-python
|
- &unittest-python
|
||||||
name: Unittest python server code
|
name: Unittest python server code
|
||||||
caches:
|
caches:
|
||||||
- pip
|
- pip
|
||||||
services:
|
services:
|
||||||
- postgres
|
- postgres
|
||||||
script: # Modify the commands below to build your repository.
|
script: # Modify the commands below to build your repository.
|
||||||
- pip install pipenv
|
- pip install pipenv
|
||||||
- export SECRET_KEY=abcd1234
|
- export SECRET_KEY=abcd1234
|
||||||
- export DATABASE_URL=postgres://postgres:postgres@localhost:5432/skillbox
|
- export DATABASE_URL=postgres://postgres:postgres@localhost:5432/skillbox
|
||||||
- export DEBUG=True
|
- export DEBUG=True
|
||||||
- export USE_AWS=False
|
- export USE_AWS=False
|
||||||
- pipenv install --dev --system
|
- pipenv install --dev --system
|
||||||
- ./server/run_unittests_coverage.sh
|
- ./server/run_unittests_coverage.sh
|
||||||
|
|
||||||
pipelines:
|
pipelines:
|
||||||
default:
|
default:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue