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 0b60e82 commit 7305fb4Copy full SHA for 7305fb4
baselines/agents.py
@@ -40,6 +40,7 @@ def run(
40
auto_lint = True
41
else:
42
auto_lint = False
43
+ log_dir = log_dir.resolve()
44
log_dir.mkdir(parents=True, exist_ok=True)
45
input_history_file = log_dir / ".aider.input.history"
46
chat_history_file = log_dir / ".aider.chat.history.md"
commit0/harness/evaluate.py
@@ -83,7 +83,7 @@ def main(
83
)
84
continue
85
report = load_dataset("json", data_files=report_file, split="train") # type: ignore
86
- tests = {x["nodeid"]: x["call"] for x in report["tests"][0]} # type: ignore
+ tests = {x["nodeid"]: x["call"] for x in report["tests"][0] if "call" in x} # type: ignore
87
status = []
88
runtimes = []
89
no_runs = 0
0 commit comments