From d0b4227afcaec48b1eb09c3eb4316aa20e186e53 Mon Sep 17 00:00:00 2001 From: Pierre Fontaine Date: Mon, 18 Jan 2021 10:48:20 +0100 Subject: [PATCH] :fire: Remove venv in CI. --- .circleci/config.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 982b9f9..1d5661e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,10 +13,7 @@ jobs: - dependencies- - run: name: Install dependencies - command: | - python3 -m venv venv - . venv/bin/activate - pip install -r requirements/dev.txt + command: pip install -r requirements/dev.txt test: docker: - image: circleci/postgres:9.6.5 @@ -39,14 +36,10 @@ jobs: environment: FLASK_APP: /home/circleci/repo/autoapp.py FLASK_DEBUG: 0 - command: | - . venv/bin/activate - flask db upgrade + command: flask db upgrade - run: name: Flask test - command: | - . venv/bin/activate - flask test + command: flask test workflows: