File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1010venv_dir = .venv
1111endif
1212
13- UV_SYNC_ARGS ?= --all-extras
14- UV_RUN_ARGS ?= --all-extras --locked
13+ UV_SYNC_INSTALL_ARGS ?= --all-extras --frozen
14+ UV_SYNC_LOCK_ARGS ?= --all-extras
15+ UV_RUN_ARGS ?= --all-extras --frozen
1516
1617PYTEST_ARGS ?= --color=yes
1718
1819# # Rules
1920
2021.PHONY : install
2122install :
22- uv sync $(uv_project_args ) $(UV_SYNC_ARGS )
23+ uv sync $(uv_project_args ) $(UV_SYNC_INSTALL_ARGS )
2324
2425.PHONY : lock
2526lock :
26- uv lock $(uv_project_args ) $(UV_LOCK_ARGS )
27+ uv sync $(uv_project_args ) $(UV_SYNC_LOCK_ARGS )
2728
2829.PHONY : clean
2930clean :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ ifndef IS_RECURSIVE_MAKE
1414# make with VERBOSE=1 to print all outputs of recursive makes
1515VERBOSE ?= 0
1616
17- RECURSIVE_TARGETS = clean install test format lint type-check
17+ RECURSIVE_TARGETS = clean install test format lint type-check lock
1818
1919# You can pass in a list of files or directories to retain when running `clean/git-clean`
2020# ex: make clean GIT_CLEAN_RETAIN=".env .data"
You can’t perform that action at this time.
0 commit comments