Browse Source

💚 trying without image name

pull/1/head
Francois Lannoy 6 years ago
parent
commit
9d2d6b95ad
  1. 3
      .circleci/config.yml

3
.circleci/config.yml

@ -26,7 +26,6 @@ jobs:
FLASK_DEBUG: 1 FLASK_DEBUG: 1
DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/psdb DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/psdb
- image: circleci/postgres:9.6.5-alpine - image: circleci/postgres:9.6.5-alpine
name: postgres
environment: environment:
POSTGRES_USER: myUsr POSTGRES_USER: myUsr
POSTGRES_DB: psdb POSTGRES_DB: psdb
@ -37,7 +36,7 @@ jobs:
key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }} key: deps1-{{ .Branch }}-{{ checksum "requirements/dev.txt" }}
- run: - run:
name: Wait for postgres name: Wait for postgres
command: dockerize -wait tcp://postgres:5432 -timeout 1m
command: dockerize -wait tcp://localhost:5432 -timeout 1m
- run: - run:
name: running test name: running test
command: | command: |

Loading…
Cancel
Save