Skip to content

Commit 4a4e627

Browse files
committed
cross
1 parent 6f93af6 commit 4a4e627

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/validate-published-rules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
CORE_IDS_ARG="--core-ids ${{ inputs.core_ids }}"
9999
fi
100100
101-
CORE_IDS_ARG="--core-ids CORE-000001 CORE-000002 CORE-000003 CORE-000004" # TODO: Remove this before merging to main
101+
# CORE_IDS_ARG="--core-ids CORE-000001 CORE-000002 CORE-000003 CORE-000004" # TODO: Remove this before merging to main
102102
103103
./venv/bin/python engine/scripts/validate_published_rules.py \
104104
--rules-root "$(pwd)/open-rules" \

scripts/validate_published_rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _parse_case_result(line: str) -> dict:
7777
"Type": d["type"],
7878
"Number": str(d["num"]),
7979
"Execution": CHECKMARK if exec_ok else CROSS,
80-
"Expected": str(d.get("expected", "")),
80+
"Expected": CROSS if d.get("expected") is None else str(d["expected"]),
8181
"Actual": str(d.get("actual", "")),
8282
"Match": CHECKMARK if match_ok else CROSS,
8383
# Private fields used when generating failure detail

0 commit comments

Comments
 (0)