mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Filter out failed test-perf runs.
This commit is contained in:
parent
83a8891bd4
commit
fcc64cfd29
1 changed files with 3 additions and 1 deletions
|
@ -281,10 +281,12 @@ def save_result_csv(results, filename, manifest, expected_runs, base):
|
|||
'unloadEventStart',
|
||||
]
|
||||
|
||||
successes = [r for r in results if r['domComplete'] != -1]
|
||||
|
||||
with open(filename, 'w', encoding='utf-8') as csvfile:
|
||||
writer = csv.DictWriter(csvfile, fieldnames)
|
||||
writer.writeheader()
|
||||
writer.writerows(results)
|
||||
writer.writerows(successes)
|
||||
|
||||
|
||||
def format_result_summary(results):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue