Skip to content

Commit 2e3eb11

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 296bcee commit 2e3eb11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/model_serving/model_server/llmd/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def llmisvc_token(
181181
# ===========================================
182182
@pytest.fixture(scope="session", autouse=True)
183183
def llmd_user_workload_monitoring_config_map(
184-
admin_client: DynamicClient, cluster_monitoring_config: ConfigMap # noqa: ARG001 — ordering dependency
184+
admin_client: DynamicClient, cluster_monitoring_config: ConfigMap
185185
) -> Generator[ConfigMap]:
186186
"""Ephemeral user workload monitoring for LLMD tests."""
187187
data = {

tests/model_serving/model_server/llmd/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def send_prefix_cache_requests(
292292
status, _ = send_chat_completions(llmisvc=llmisvc, prompt=prompt, token=token, insecure=False)
293293
if status == 200:
294294
successful += 1
295-
except Exception: # noqa: BLE001
295+
except Exception:
296296
LOGGER.exception(f"Request {i + 1}/{count} failed")
297297
LOGGER.info(f"{successful}/{count} requests succeeded")
298298
assert successful >= count * min_ratio, f"Too many failures: {successful}/{count} (need {min_ratio * 100}%)"

0 commit comments

Comments
 (0)