py3: bail on ratcheting tests forward on 3.6.0 and 3.6.1
authorKevin Bullock <kbullock+mercurial@ringworld.org>
Fri, 02 Mar 2018 15:37:57 -0500
changeset 36589 3790610c2793
parent 36588 281f66777ff0
child 36590 0083e373e5f5
py3: bail on ratcheting tests forward on 3.6.0 and 3.6.1
contrib/python3-ratchet.py
--- a/contrib/python3-ratchet.py	Thu Mar 01 18:22:36 2018 -0500
+++ b/contrib/python3-ratchet.py	Fri Mar 02 15:37:57 2018 -0500
@@ -80,8 +80,7 @@
         print('warning: Python 3.6.0 and 3.6.1 have '
               'a bug which breaks Mercurial')
         print('(see https://bugs.python.org/issue29714 for details)')
-        # TODO(augie): uncomment exit when Python 3.6.2 is available
-        # sys.exit(1)
+        sys.exit(1)
 
     rt = subprocess.Popen([opts.python3, 'run-tests.py', '-j', str(opts.j),
                            '--blacklist', opts.working_tests, '--json'])