Commit 8b96baad authored by Rob Wood's avatar Rob Wood
Browse files

Bug 1340065 - Don't let SETA optimize out linux64-stylo tests; r=jmaher

MozReview-Commit-ID: 4wJe1ZtxXds

--HG--
extra : rebase_source : 336f7556e3a0baa3a26e4f10656fae88e33d3ce4
parent a08b8a8c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -68,6 +68,9 @@ class SETA(object):
            # ensure no build tasks slipped in, we never want to optimize out those
            low_value_tasks = [x for x in low_value_tasks if 'build' not in x.lower()]

            # Bug 1340065, temporarily disable SETA for linux64-stylo
            low_value_tasks = [x for x in low_value_tasks if x.find('linux64-stylo') == -1]

        # In the event of request times out, requests will raise a TimeoutError.
        except exceptions.Timeout:
            logger.warning("SETA timeout, we will treat all test tasks as high value.")