mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +00:00
validate:launcher:reporter: Sort Final report by results
This commit is contained in:
parent
b8e1c3e64c
commit
4f01b2bd8a
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class Reporter(Loggable):
|
|||
def final_report(self):
|
||||
print "\n"
|
||||
printc("Final Report:", title=True)
|
||||
for test in self.results:
|
||||
for test in sorted(self.results, key=lambda test: test.result):
|
||||
printc(test)
|
||||
|
||||
print "\n"
|
||||
|
|
Loading…
Reference in a new issue