Skip to content

Commit

Permalink
Bug 1561889 - Ignore percentage values from youtube-playback-tests r=…
Browse files Browse the repository at this point in the history
…whimboo

Differential Revision: https://phabricator.services.mozilla.com/D36208

--HG--
extra : moz-landing-system : lando
  • Loading branch information
alexandru-irimovici committed Jul 3, 2019
1 parent ccf1b2a commit 176aeab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testing/raptor/raptor/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,8 @@ def create_subtest_entry(name, value,
for name in names:
_subtests[name]['value'] = round(filters.median(_subtests[name]['replicates']), 2)
subtests.append(_subtests[name])
if name.endswith("dropped_frames"):
# only include dropped_frames values, without the %_dropped_frames values
if name.endswith("X_dropped_frames"):
vals.append([_subtests[name]['value'], name])

return subtests, vals
Expand Down

0 comments on commit 176aeab

Please sign in to comment.