From 6517008eeda014bd7d8a2c5750af8ceebddc5614 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 1 Dec 2025 17:35:33 +0100 Subject: [PATCH 1/2] add more local dirs to gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index e7385f6..69c176a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ pyerrors_corrlib.egg-info __pycache__ *.egg-info test.ipynb +.vscode +.venv +.pytest_cache \ No newline at end of file From 3993f2f213a5df7a2b53169ad3116c75541b0b0d Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Mon, 1 Dec 2025 17:37:57 +0100 Subject: [PATCH 2/2] add UV_CACHE_DIR --- .github/workflows/pytest.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 1b20a01..35cfd38 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -19,6 +19,7 @@ jobs: runs-on: ubuntu-latest env: UV_PYTHON: ${{ matrix.python-version }} + UV_CACHE_DIR: /tmp/.uv-cache steps: - name: Check out the repository uses: https://github.com/RouxAntoine/checkout@v4.1.8