From 6e0ec16f00f274d7e134a341cf298e9524559908 Mon Sep 17 00:00:00 2001 From: Francois Ferrand Date: Thu, 18 Apr 2024 15:05:22 +0200 Subject: [PATCH] Fix caching of python packages Issue: UTAPI-99 --- .github/workflows/tests.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 64cc503d..69fbc266 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -220,9 +220,7 @@ jobs: python-version: '3.9' cache: pip - name: Install python deps - run: | - pip install requests - pip install redis + run: pip install -r requirements.txt - name: install dependencies run: yarn install --frozen-lockfile --network-concurrency 1 - name: Wait for warp10 for 60 seconds @@ -343,9 +341,7 @@ jobs: python-version: '3.9' cache: pip - name: Install python deps - run: | - pip install requests - pip install redis + run: pip install -r requirements.txt - name: install dependencies run: yarn install --frozen-lockfile --network-concurrency 1 - name: Wait for warp10 a little bit