Skip to content

Commit b5c7bd1

Browse files
committed
update uc step
1 parent c5b5638 commit b5c7bd1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ jobs:
4141
- name: Install Python dependencies
4242
run: |
4343
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
4451
uv sync --all-groups
4552
4653
- id: get-secrets

0 commit comments

Comments
 (0)