From 98ac4fa415d0e3353481fdf0bdd28dcbcc014c36 Mon Sep 17 00:00:00 2001 From: diegonti Date: Tue, 8 Oct 2024 16:35:44 +0200 Subject: [PATCH] install package in action --- .github/workflows/python_tests.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_tests.yaml b/.github/workflows/python_tests.yaml index c3decd1..c799e55 100644 --- a/.github/workflows/python_tests.yaml +++ b/.github/workflows/python_tests.yaml @@ -26,8 +26,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pytest # Install your testing dependencies + pip install -e . + # pip install -r requirements.txt + # pip install pytest # Install your testing dependencies - name: Run tests run: |