From 24be8015ccde63f7e688f36f737764f6f5623e68 Mon Sep 17 00:00:00 2001 From: Tom Sasani Date: Fri, 12 Jan 2024 14:42:40 -0500 Subject: [PATCH] try installing without cache --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6ff2eff..0f7071a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,7 +20,7 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ -f requirements.txt ]; then cat requirements.txt | xargs -L1 pip install; fi + if [ -f requirements.txt ]; then cat requirements.txt | xargs -L1 pip install --no-cache-dir; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names