We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f028254 commit 69d2ff4Copy full SHA for 69d2ff4
tests/inspect-ai/scripts/prepare_comment.py
@@ -25,15 +25,7 @@ def prepare_comment(summary_path: Union[str, Path]) -> int:
25
with open(summary_path, "r") as f:
26
inspect_results = json.load(f)
27
28
- # Skip pytest results for now since they're not working properly
29
- pytest_results = None
30
-
31
- # Try to read the combined summary for overall gate status
32
- combined_results = None
33
- combined_summary_path = summary_path.parent / "combined_summary.json"
34
- if combined_summary_path.exists():
35
- with open(combined_summary_path, "r") as f:
36
- combined_results = json.load(f)
+ # Skip pytest and combined results for now since they're not working properly
37
38
# Build the comment
39
comment_parts = [
0 commit comments