From 1e5d03ba8b0e9c9131202fb3867ef4adc73ffa59 Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Mon, 18 Dec 2023 15:33:40 -0800 Subject: [PATCH] Install the package instead of manually installing requirements. --- .github/workflows/backend-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index d827cedb0..df5671c56 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -25,8 +25,7 @@ jobs: run: | cd ./backend python -m pip install --upgrade pip - python -m pip install -r requirements.txt - python -m pip install -r requirements-test.txt + python -m pip install .'[test]' - name: Test with pytest run: | cd ./backend/test && python -m pytest