Browse Source

Update config.yml

dependabot/pip/requirements/sqlalchemy-1.3.0
denisdalmeida04@gmail.com 6 years ago
parent
commit
0d6df66042
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -8,7 +8,7 @@ jobs:
- checkout - checkout
- -
restore_cache: restore_cache:
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt\" }}"
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt/prod.txt\" }}"
- -
run: run:
command: | command: |
@ -18,7 +18,7 @@ jobs:
name: "Install Python deps in a venv" name: "Install Python deps in a venv"
- -
save_cache: save_cache:
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt\" }}"
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt/prod.txt\" }}"
paths: paths:
- venv - venv
flask_tests: flask_tests:
@ -33,14 +33,14 @@ jobs:
- -
environment: environment:
POSTGRES_BD: postgres POSTGRES_BD: postgres
POSTGRES_PASSWORD: denis
POSTGRES_PASSWORD:
POSTGRES_USER: denis POSTGRES_USER: denis
image: "circleci/postgres:9.6.9-alpine-ram" image: "circleci/postgres:9.6.9-alpine-ram"
steps: steps:
- checkout - checkout
- -
restore_cache: restore_cache:
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt\" }}"
key: "deps1-{{ .Branch }}-{{ checksum \"requirements/dev.txt/prod.txt\" }}"
- -
run: run:
command: "dockerize -wait tcp://localhost:5432 -timeout 1m" command: "dockerize -wait tcp://localhost:5432 -timeout 1m"

Loading…
Cancel
Save