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 d2b5b3a commit 6dbcca3Copy full SHA for 6dbcca3
test-runner/wasi_test_runner/reporters/console.py
@@ -80,7 +80,7 @@ def _get_summary(self, fail_count: int, pass_count: int, skip_count: int, timedo
80
if timedout_count:
81
items.append(f"{self._fail_color}{timedout_count} timed out")
82
83
- total = fail_count + pass_count + skip_count
+ total = fail_count + pass_count + skip_count + timedout_count
84
items.append(f"{self._reset_color}{total} total")
85
return ", ".join(items)
86
0 commit comments