Skip to content

Commit 83a3b5a

Browse files
committed
tests - correct check order for uv
1 parent 1eb9e51 commit 83a3b5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/configure-test-env.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ echo ">>>> Configuring Python environment"
2121
uv_exist=$(command -v uv)
2222
if [ -z $uv_exist ]
2323
then
24+
echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
25+
echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
26+
else
2427
echo "Setting up python environnement with uv"
2528
# create or sync the virtual env in the project
2629
uv sync --frozen
27-
else
28-
echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
29-
echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
3030
fi
3131

3232
# Check Julia environment ---

0 commit comments

Comments
 (0)