# HG changeset patch # User Kevin Bullock # Date 1520023077 18000 # Node ID 3790610c279322dbff6eba3ff59750d0b0ceb418 # Parent 281f66777ff02ec2cab9cee80c292f15b0efd039 py3: bail on ratcheting tests forward on 3.6.0 and 3.6.1 diff -r 281f66777ff0 -r 3790610c2793 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'])