Skip to content

Commit 79c24fd

Browse files
authored
Merge branch 'main' into keda
2 parents 5a5172a + 95f8723 commit 79c24fd

File tree

33 files changed

+1728
-1470
lines changed

33 files changed

+1728
-1470
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:3.13
33
ARG USER=odh
44
ARG HOME=/home/$USER
55
ARG TESTS_DIR=$HOME/opendatahub-tests/
6-
ENV UV_PYTHON=python3.12
6+
ENV UV_PYTHON=python3.13
77
ENV UV_COMPILE_BYTECODE=1
88
ENV UV_NO_SYNC=1
99
ENV UV_NO_CACHE=1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dev-dependencies = [
2727
[tool.uv.sources]
2828

2929
[project]
30-
requires-python = "==3.12.*"
30+
requires-python = "==3.13.*"
3131
name = "opendatahub-tests"
3232
version = "0.1.0"
3333
description = "Tests repository for Open Data Hub (ODH)"

tests/model_registry/python_client/test_model_registry_creation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ def test_model_registry_endpoint_response(
145145
output = execute_model_registry_get_command(
146146
url=f"{model_registry_rest_url}/{endpoint}", headers=model_registry_rest_headers, json_output=False
147147
)
148-
assert output["raw_output"].lower() == "OK".lower()
148+
assert output["raw_output"] == "OK"

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_catboost_basic_model_deployment/TestCatBoostModel.test_catboost_model_inference[catboost-raw-grpc-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[catboost-raw-grpc-deployment].json

File renamed without changes.

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_catboost_basic_model_deployment/TestCatBoostModel.test_catboost_model_inference[catboost-raw-rest-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[catboost-raw-rest-deployment].json

File renamed without changes.

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_catboost_basic_model_deployment/TestCatBoostModel.test_catboost_model_inference[catboost-serverless-grpc-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[catboost-serverless-grpc-deployment].json

File renamed without changes.

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_catboost_basic_model_deployment/TestCatBoostModel.test_catboost_model_inference[catboost-serverless-rest-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[catboost-serverless-rest-deployment].json

File renamed without changes.

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_lightgbm_basic_model_deployment/TestLightGBMModel.test_lightgbm_model_inference[lightgbm-iris-raw-grpc-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[lightgbm-raw-grpc-deployment].json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"modelName": "lightgbm-iris",
2+
"modelName": "lightgbm",
33
"modelVersion": "v0.1.0",
44
"outputs": [
55
{

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_lightgbm_basic_model_deployment/TestLightGBMModel.test_lightgbm_model_inference[lightgbm-iris-raw-rest-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[lightgbm-raw-rest-deployment].json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"id": "lightgbm-iris",
3-
"model_name": "lightgbm-iris",
2+
"id": "lightgbm",
3+
"model_name": "lightgbm",
44
"model_version": "v0.1.0",
55
"outputs": [
66
{

tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_lightgbm_basic_model_deployment/TestLightGBMModel.test_lightgbm_model_inference[lightgbm-iris-serverless-grpc-deployment].json renamed to tests/model_serving/model_runtime/mlserver/basic_model_deployment/__snapshots__/test_mlserver_basic_model_deployment/TestMLServerModels.test_mlserver_model_inference[lightgbm-serverless-grpc-deployment].json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"modelName": "lightgbm-iris",
2+
"modelName": "lightgbm",
33
"modelVersion": "v0.1.0",
44
"outputs": [
55
{

0 commit comments

Comments
 (0)