Skip to content

Commit 962db50

Browse files
committed
Put back the INIT_STATE_TEST but hide it from the CLI output, since otherwise it breaks tests.
1 parent c726f95 commit 962db50

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

codeflash/verification/test_results.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ def report_to_string(report: dict[TestType, dict[str, int]]) -> str:
168168
def report_to_tree(report: dict[TestType, dict[str, int]], title: str) -> Tree:
169169
tree = Tree(title)
170170
for test_type in TestType:
171+
if test_type == TestType.INIT_STATE_TEST:
172+
continue
171173
tree.add(
172174
f"{test_type.to_name()} - Passed: {report[test_type]['passed']}, Failed: {report[test_type]['failed']}"
173175
)

0 commit comments

Comments
 (0)