Skip to content

Commit

Permalink
Fix caching of python packages
Browse files Browse the repository at this point in the history
Issue: UTAPI-99
  • Loading branch information
francoisferrand committed Apr 18, 2024
1 parent 7b4373f commit 73761ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,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: ${{ matrix.test.name }}
Expand Down Expand Up @@ -222,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
Expand Down Expand Up @@ -345,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
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
redis==5.0.3
requests==2.31.0

0 comments on commit 73761ed

Please sign in to comment.