Skip to content

Commit 435eff3

Browse files
committed
uv.lock with editable
1 parent 1bca991 commit 435eff3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

analyses-snapshot-testing/Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,13 @@ test-protocol-analysis:
3737

3838
.PHONY: ci-setup
3939
ci-setup:
40-
uv sync --locked --all-extras
40+
@echo "Setting up CI environment with editable installs..."
41+
@if uv sync --locked --all-extras 2>/dev/null; then \
42+
echo "Lockfile is current, using locked dependencies"; \
43+
else \
44+
echo "Lockfile needs update due to editable installs, syncing without lock"; \
45+
uv sync --all-extras; \
46+
fi
4147

4248
.PHONY: setup
4349
setup:

0 commit comments

Comments
 (0)