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 1bca991 commit 435eff3Copy full SHA for 435eff3
analyses-snapshot-testing/Makefile
@@ -37,7 +37,13 @@ test-protocol-analysis:
37
38
.PHONY: ci-setup
39
ci-setup:
40
- uv sync --locked --all-extras
+ @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
47
48
.PHONY: setup
49
setup:
0 commit comments