Bug 1246683 - Remove 'mach try is under development' message when running |mach try|, r=chmanchester, DONTBUILD because NPOTB draft
authorAndrew Halberstadt <ahalberstadt@mozilla.com>
Mon, 08 Feb 2016 12:24:34 -0500
changeset 329584 31e842e5975916f9e4b7d6f57158db52d2b59a76
parent 329566 815d689a6e1e7187b10238f2f840d49201d67c2b
child 513984 82c353c37f3c4b51f3a8b9ebebbc089aeb16f2a7
push id10552
push userahalberstadt@mozilla.com
push dateMon, 08 Feb 2016 17:25:03 +0000
reviewerschmanchester, DONTBUILD
bugs1246683
milestone47.0a1
Bug 1246683 - Remove 'mach try is under development' message when running |mach try|, r=chmanchester, DONTBUILD because NPOTB MozReview-Commit-ID: KmDMEfJ4oEq
testing/mach_commands.py
--- a/testing/mach_commands.py
+++ b/testing/mach_commands.py
@@ -600,18 +600,16 @@ class PushToTry(MachCommandBase):
         (available at https://github.com/glandium/git-cinnabar).
 
         """
 
         from mozbuild.testing import TestResolver
         from mozbuild.controller.building import BuildDriver
         from autotry import AutoTry
 
-        print("mach try is under development, please file bugs blocking 1149670.")
-
         resolver_func = lambda: self._spawn(TestResolver)
         at = AutoTry(self.topsrcdir, resolver_func, self._mach_context)
 
         if kwargs["list"]:
             at.list_presets()
             sys.exit()
 
         if kwargs["load"] is not None: