From 03d86ce68a04c33578e7927c0161ce139e35a577 Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 25 Jul 2024 13:26:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 4 ++-- README-DEV.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3d14bc7..ba7f539 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,8 +10,8 @@ jobs: steps: - checkout - run: pip3 install --upgrade pip - - run: pip3 install -r requirements.txt - - run: pip3 install pytest + - run: pip3 install -e . + - run: pip3 install -r requirements-test.txt - run: pytest workflows: diff --git a/README-DEV.md b/README-DEV.md index 6d1f17d..134e784 100644 --- a/README-DEV.md +++ b/README-DEV.md @@ -4,6 +4,7 @@ pip install -r requirements-test.txt To run tests: ``` +pip install -e . pytest ```