From f9258898ff85cfb47c5f8247105c6322efb43bfb Mon Sep 17 00:00:00 2001 From: Simon Alibert Date: Tue, 12 Mar 2024 12:24:10 +0100 Subject: [PATCH] CI fix attempt --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9edad05..3efcb109 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,7 @@ jobs: env: POETRY_VERSION: 1.8.1 DATA_DIR: tests/data + TMPDIR: ~/tmp steps: #---------------------------------------------- # check-out repo and set-up python @@ -69,7 +70,9 @@ jobs: key: venv-${{ steps.setup-python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies if: steps.restore-dependencies-cache.outputs.cache-hit != 'true' - run: poetry install --no-interaction --no-root + run: | + mkdir ~/tmp + poetry install --no-interaction --no-root - name: Save cached venv if: | steps.restore-dependencies-cache.outputs.cache-hit != 'true' &&