From c2de4311952d775381670b6cdcc9de642c4aa116 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Sat, 9 Jan 2021 17:40:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20the=20last=20test=20for=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a08ad46..3af63be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -61,25 +61,12 @@ jobs: . venv/bin/activate sleep 1 flask db upgrade + slask test environment: CONDUIT_SECRET: 'something-really-secret' FLASK_APP: /home/circleci/repo/autoapp.py DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr FLASK_DEBUG: 1 - # this example uses Django's built-in test-runner - # other common Python testing frameworks include pytest and nose - # https://pytest.org - # https://nose.readthedocs.io - - run: - name: run tests - command: | - . venv/bin/activate - flask test - environment: - CONDUIT_SECRET: 'something-really-secret' - FLASK_APP: /home/circleci/repo/autoapp.py - FLASK_DEBUG: 1 - DATABASE_URL: postgresql://myUsr:somePwd@localhost:5432/myUsr - save_cache: paths: - venv