Skip to content

Commit 162c61b

Browse files
author
Radovan Fuchs
committed
formatting fix
1 parent 778eeb6 commit 162c61b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

tests/e2e/features/steps/tls.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def prepare_tls_feature_entry_on_prow(feature_filename: str | None = None) -> No
6363
if not is_prow_environment():
6464
return
6565
label = os.path.basename(feature_filename or "tls.feature")
66-
print(f"[{label}] Prow/Konflux entry: ensure mock TLS, reset run.yaml, warm Llama...")
66+
print(
67+
f"[{label}] Prow/Konflux entry: ensure mock TLS, reset run.yaml, warm Llama..."
68+
)
6769
reset_llama_run_config_to_pipeline_default()
6870
_ensure_cluster_mock_tls_inference()
6971
_prepare_tls_prow_llama_restart_env()
@@ -151,7 +153,7 @@ def _mock_tls_base_url(port: int) -> str:
151153

152154

153155
def _tls_provider_base() -> dict[str, Any]:
154-
"""Default tls-openai provider dict with environment-appropriate base_url."""
156+
"""Tls-openai provider dict with environment-appropriate base_url."""
155157
return {
156158
"provider_id": "tls-openai",
157159
"provider_type": "remote::openai",

tests/e2e/utils/llama_config_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ def reset_llama_run_config_to_pipeline_default() -> None:
3030
"""Reset llama-stack-config run.yaml to Konflux/Prow pipeline seed (run-ci.yaml)."""
3131
if not is_prow_environment():
3232
return
33-
run_ci = (
34-
Path(__file__).resolve().parents[1] / "configs" / "run-ci.yaml"
35-
)
33+
run_ci = Path(__file__).resolve().parents[1] / "configs" / "run-ci.yaml"
3634
if not run_ci.is_file():
3735
print(f"WARN: pipeline run.yaml seed not found at {run_ci}", flush=True)
3836
return

0 commit comments

Comments
 (0)