From aeb2d9425c766c2f33a9b07d99bc45c5165ad30f Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 16:25:21 +0100 Subject: [PATCH] :green_heart: Reactivate venv for the test --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6fddda2..5280f23 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,10 @@ jobs: build: docker: - image: circleci/python:3.7.9-stretch-browsers + environment: + FLASK_APP: autoapp.py + CONDUIT_SECRET: 'something-really-secret' + FLASK_DEBUG: 1 steps: - checkout - restore_cache: @@ -40,6 +44,7 @@ jobs: - run: name: Launching tests command: | + . venv/bin/activate flask db upgrade flask test