From 520b6d5ffb694ae37898e3469e24deadc1903c7a Mon Sep 17 00:00:00 2001 From: spokequenouille Date: Tue, 12 Jan 2021 15:59:16 +0100 Subject: [PATCH] test --- .circleci/config.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7502217..fe0b132 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,4 +16,17 @@ jobs: - save_cache: key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }} paths: - - "venv" \ No newline at end of file + - "venv" + test: + docker: + - image: circleci/python:3.9-buster-node-browsers + environment: + DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/psdb + FLASK_APP: autoapp.py + CONDUIT_SECRET: 'something-really-secret' + FLASK_DEBUG: 1 + - image: circleci/postgres:9.6.2-alpine + environment: + POSTGRES_USER: myUsr + POSTGRES_DB: psdb + POSTGRES_PASSWORD: somePwd \ No newline at end of file