Skip to content

Commit f484b03

Browse files
authored
Merge branch 'main' into feature/stateful_api_testing
2 parents 84652b2 + 497cbb0 commit f484b03

File tree

20 files changed

+2
-3060
lines changed

20 files changed

+2
-3060
lines changed

.github/workflows/scripts/pr_workflow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import os
42
import re
53
import sys

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ minimum_pre_commit_version: 3.3.0
22
default_install_hook_types: [pre-commit, commit-msg]
33

44
default_language_version:
5-
python: python3
5+
python: python3.12
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks

conftest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import logging
42
import os
53
import pathlib

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.9"
30+
requires-python = "==3.12.*"
3131
name = "opendatahub-tests"
3232
version = "0.1.0"
3333
description = "Tests repository for Open Data Hub (ODH)"

tests/conftest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import base64
42
import os
53
import shutil

tests/model_explainability/trustyai_service/trustyai_service_utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import json
42
import os
53
from http import HTTPStatus

tests/model_serving/model_server/inference_service_configuration/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from contextlib import contextmanager
42
from typing import Any, Generator
53

tests/model_serving/model_server/multi_node/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import re
42
import shlex
53

tests/model_serving/model_server/serverless/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from typing import Any
42

53
from kubernetes.dynamic import DynamicClient

tests/model_serving/model_server/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import json
42
import re
53
from concurrent.futures import ThreadPoolExecutor, as_completed

0 commit comments

Comments
 (0)