We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b5638 commit b5c7bd1Copy full SHA for b5c7bd1
.github/workflows/e2e.yml
@@ -41,6 +41,13 @@ jobs:
41
- name: Install Python dependencies
42
run: |
43
cd tests
44
+ # Remove lock file if it has cached paths - uv will regenerate it with git sources
45
+ if grep -q "\.cache/uv/git-v0/checkouts" uv.lock 2>/dev/null; then
46
+ echo "Lock file contains cached paths, removing to regenerate..."
47
+ rm -f uv.lock
48
+ fi
49
+ # Clear uv cache to ensure git dependencies are fetched fresh
50
+ uv cache clean
51
uv sync --all-groups
52
53
- id: get-secrets
0 commit comments