Commit 61f083bc authored by Marian Raiciof's avatar Marian Raiciof
Browse files

Bug 1568461 - Fix subtest alerting for youtube-playback tests r=rwood,perftest-reviewers

The alert_on values from the test INI were not being passed into the test settings json via manifest.py, this patch will fix this.

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

--HG--
extra : moz-landing-system : lando
parent 460b937f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -878,6 +878,11 @@ class Output(object):
                }

            _subtests[name]['replicates'].append(value)
            if self.subtest_alert_on is not None:
                if name in self.subtest_alert_on:
                    LOG.info("turning on subtest alerting for measurement type: %s"
                             % name)
                    _subtests[name]['shouldAlert'] = True

        for pagecycle in data:
            for _sub, _value in pagecycle[0].iteritems():