Skip to content

Commit f512e38

Browse files
authored
Fix process results (#41)
1 parent 1385707 commit f512e38

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/process_results.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def run(input_path: str | Path, output_path: str | Path):
6363
"params": [],
6464
"result": [],
6565
}
66-
for result_json in result_path.glob("*existing*.json"):
66+
for result_json in result_path.glob("*.json"):
67+
if result_json.name == "machine.json":
68+
continue
6769
with open(result_json) as fh:
6870
results = json.load(fh)
6971
commit_hash = results["commit_hash"]

0 commit comments

Comments
 (0)