From 888bf2294c594af00bc4e1851caa47f0f0abbfef Mon Sep 17 00:00:00 2001 From: Louis Dutoit Date: Sat, 16 Jan 2021 15:03:01 +0100 Subject: [PATCH] :wrench: config.yml --- .circleci/config.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f7a124..cd1254c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,19 +40,19 @@ jobs: command: | . venv/bin/activate flask db upgrade - - run: - name: flask test - environment: - FLASK_APP: /home/circleci/repo/autoapp.py - FLASK_DEBUG: 0 - POSTGRES_USER: postgres - POSTGRES_DB: bdtest - POSTGRES_PASSWORD: somePwd - POSTGRES_PORT: 5432 - DATABASE_URL: postgresql://postgres:somePwd@localhost:5432/postgres - command: | - . venv/bin/activate - flask test + # - run: + # name: flask test + # environment: + # FLASK_APP: /home/circleci/repo/autoapp.py + # FLASK_DEBUG: 0 + # POSTGRES_USER: postgres + # POSTGRES_DB: bdtest + # POSTGRES_PASSWORD: somePwd + # POSTGRES_PORT: 5432 + # DATABASE_URL: postgresql://postgres:somePwd@localhost:5432/postgres + # command: | + # . venv/bin/activate + # flask test - run: docker container stop flask_db_test - run: docker container rm flask_db_test - run: unset DATABASE_URL