From 9034e6d7024dbdfeff498437dd53bef4ed0ed39a Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Mon, 16 Dec 2019 11:28:26 +0100 Subject: [PATCH] Updates circleci config to match bc250bd8146d06551169a94b4c426658ed71ae57 Cli tests are commented out for now --- .circleci/config.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d3a6d2b..ae0798c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,10 +49,22 @@ jobs: command: cp pisa/sample_conf.py pisa/conf.py - run: - name: run pisa tests + name: run pisa unit tests command: | . venv/bin/activate - pytest test/unit + pytest test/pisa/unit/ + + - run: + name: run common unit tests + command: | + . venv/bin/activate + pytest test/common/unit + +# - run: +# name: run cli unit tests +# command: | +# . venv/bin/activate +# pytest test/apps/cli/unit # - store_artifacts: # path: test-reports