Skip to content

Commit

Permalink
tests - correct check order for uv
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv committed Dec 12, 2024
1 parent 1eb9e51 commit 83a3b5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/configure-test-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ echo ">>>> Configuring Python environment"
uv_exist=$(command -v uv)
if [ -z $uv_exist ]
then
echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
else
echo "Setting up python environnement with uv"
# create or sync the virtual env in the project
uv sync --frozen
else
echo "No uv found - Install uv please: https://docs.astral.sh/uv/getting-started/installation/."
echo "Using 'uv' is the prefered way. You can still use python and create a .venv in the project."
fi

# Check Julia environment ---
Expand Down

0 comments on commit 83a3b5a

Please sign in to comment.