Skip to content

Commit

Permalink
Merge branch 'master' into feature/kserve-private-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lugi0 authored Aug 1, 2024
2 parents cdd943f + 400f945 commit 3dd1cbc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion ods_ci/run_robot_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,17 @@ if [[ ${SKIP_INSTALL} -eq 0 ]]; then
break
fi
done
if [[ -d "${virtenv}" ]]; then
if [[ -d "${basepath}/../.venv" ]]; then
echo "We ran already before and settled in venv we linked into '${basepath}/../.venv'."
elif [[ -d "${virtenv}" ]]; then
echo "Using a pre-created virtual environment in '${virtenv}' for poetry to save time."
poetry config --local virtualenvs.in-project true
# Workaround for Poetry urllib3 connection error
poetry config --local installer.parallel false
# Link in the venv we're going to be using
ln --symbolic "${virtenv}" "${basepath}/../.venv"
# Workaround for .venv directory not being movable (hashbangs in bin/ hardcode python interpreter path)
ln --symbolic "${virtenv}" "${HOME}/.local/ods-ci/.venv"
else
echo "Pre-created virtual environment has not been found in '${virtenv}'. All dependencies will be installed from scratch."
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ${CODEFLARE-SDK-API_URL} %{CODEFLARE-SDK-API_URL=https://api.git
${CODEFLARE-SDK_DIR} codeflare-sdk
${CODEFLARE-SDK_REPO_URL} %{CODEFLARE-SDK_REPO_URL=https://github.com/project-codeflare/codeflare-sdk.git}
${DISTRIBUTED_WORKLOADS_RELEASE_ASSETS} https://github.com/opendatahub-io/distributed-workloads/releases/latest/download
${FMS_HF_TUNING_IMAGE} quay.io/modh/fms-hf-tuning@sha256:8c52d4608229f7833a40af5f8bc9c8a9823dcc489829ec147b5e9b52e5ae0d62
${FMS_HF_TUNING_IMAGE} quay.io/modh/fms-hf-tuning@sha256:2985c259c66e227417ed69365bb23ab92ed5022650672771e56070326b21d5f4
${KFTO_CORE_BINARY_NAME} kfto
${KFTO_UPGRADE_BINARY_NAME} kfto-upgrade

Expand Down

0 comments on commit 3dd1cbc

Please sign in to comment.