mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +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):
|
def final_report(self):
|
||||||
print "\n"
|
print "\n"
|
||||||
printc("Final Report:", title=True)
|
printc("Final Report:", title=True)
|
||||||
for test in self.results:
|
for test in sorted(self.results, key=lambda test: test.result):
|
||||||
printc(test)
|
printc(test)
|
||||||
|
|
||||||
print "\n"
|
print "\n"
|
||||||
|
|
Loading…
Reference in a new issue