Skip to content

Commit 7464dd8

Browse files
committed
Froze also when restoring
We want to control environment update
1 parent 4244e4d commit 7464dd8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/configure-test-env.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If ( $py -and $python) {
2828
Write-Host -ForegroundColor red "No uv found in PATH - Install uv please: https://docs.astral.sh/uv/getting-started/installation/"
2929
}
3030
# install from lockfile
31-
uv sync
31+
uv sync --frozen
3232
$uv=$true
3333
}
3434

tests/configure-test-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ then
3232
if [ -z $uv_exist ]
3333
echo "Setting up python environnement with uv"
3434
# create or sync the virtual env in the project
35-
uv sync
35+
uv sync --frozen
3636
then
3737
echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/"
3838
fi

0 commit comments

Comments
 (0)