mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
test_runner: format flaky tests message
BUG=None TEST=tools/presubmit --all # with a failed test Change-Id: I67262353cbd732b1394cdbe60b38d04c3a6e817b Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3763359 Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
parent
f91ea18f6c
commit
e5afc82d9c
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ def main():
|
||||||
flakes = [r for r in all_results if r.previous_attempts]
|
flakes = [r for r in all_results if r.previous_attempts]
|
||||||
if flakes:
|
if flakes:
|
||||||
print()
|
print()
|
||||||
print("There are {len(flakes)} flaky tests")
|
print(f"There are {len(flakes)} flaky tests")
|
||||||
for result in flakes:
|
for result in flakes:
|
||||||
print(f" {result.name}")
|
print(f" {result.name}")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue