Skip to content

Commit 7b29298

Browse files
committed
rerun
1 parent 1c89c47 commit 7b29298

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/mcp-compatibility.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,7 @@ jobs:
341341
try:
342342
failure_payload = json.loads(failure_path.read_text())
343343
except Exception as exc:
344-
print(
345-
f'Warning: Could not parse failure file '
346-
f"{failure_path}: {exc}"
347-
)
344+
print(f'Warning: Could not parse failure file {failure_path}: {exc}')
348345
continue
349346
failure_payload['_source'] = str(failure_path)
350347
failure_details.append(failure_payload)

.github/workflows/mcp-prerelease-compatibility.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,7 @@ jobs:
327327
try:
328328
failure_payload = json.loads(failure_path.read_text())
329329
except Exception as exc:
330-
print(
331-
f'Warning: Could not parse failure file '
332-
f"{failure_path}: {exc}"
333-
)
330+
print(f'Warning: Could not parse failure file {failure_path}: {exc}')
334331
continue
335332
failure_payload['_source'] = str(failure_path)
336333
failure_details.append(failure_payload)

0 commit comments

Comments
 (0)