Bug 1465107: Remove stylo mentions from wptrunner. r?jgraham draft
authorEmilio Cobos Álvarez <emilio@crisal.io>
Tue, 29 May 2018 17:23:18 +0200
changeset 801021 bf0e7ce47144fb58c631947091bda59a8016a24b
parent 801020 a3908ecbae824fe452a0732fc39369e50b18450d
child 801022 5063056bdcd545d508f2cc6662f6d2cf7a7828e9
child 801156 0aeb3a73e0415634cc6dd8da47a081a9dab97e95
child 801278 d97c45be654aa24cac4f499f14da28633adf03f4
push id111541
push userbmo:emilio@crisal.io
push dateTue, 29 May 2018 15:58:21 +0000
reviewersjgraham
bugs1465107
milestone62.0a1
Bug 1465107: Remove stylo mentions from wptrunner. r?jgraham MozReview-Commit-ID: D21P4kHOxzi
testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
--- a/testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
+++ b/testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
@@ -81,22 +81,16 @@ class RunInfo(dict):
             self["revision"] = rev
 
         self["product"] = product
         if debug is not None:
             self["debug"] = debug
         elif "debug" not in self:
             # Default to release
             self["debug"] = False
-        if product == "firefox" and "stylo" not in self:
-            self["stylo"] = False
-        if "STYLO_FORCE_ENABLED" in os.environ:
-            self["stylo"] = True
-        if "STYLO_FORCE_DISABLED" in os.environ:
-            self["stylo"] = False
         if browser_version:
             self["browser_version"] = browser_version
         if extras is not None:
             self.update(extras)
 
     def _update_mozinfo(self, metadata_root):
         """Add extra build information from a mozinfo.json file in a parent
         directory"""