From 392af43c95908e5753df212d6e143034655024ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Thu, 16 Jan 2025 17:21:42 +0000 Subject: [PATCH] pip install needed --- .github/workflows/integration_tests.yml | 1 + .github/workflows/unit_tests.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 41fefefa..ee527d33 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -19,6 +19,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install - name: Run non user endpoints integration tests run: | python -m unittest discover -v tests/integration/non_user_endpoints diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index c98c0176..d067d899 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -18,6 +18,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install - name: Run unit tests run: | python -m unittest discover -v tests/unit