Mercurial > hg
changeset 36589:3790610c2793
py3: bail on ratcheting tests forward on 3.6.0 and 3.6.1
author | Kevin Bullock <kbullock+mercurial@ringworld.org> |
---|---|
date | Fri, 02 Mar 2018 15:37:57 -0500 |
parents | 281f66777ff0 |
children | 0083e373e5f5 |
files | contrib/python3-ratchet.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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'])