##// END OF EJS Templates
py3: bail on ratcheting tests forward on 3.6.0 and 3.6.1
Kevin Bullock -
r36607:3790610c default
parent child Browse files
Show More
@@ -80,8 +80,7 b' def main(argv=()):'
80 print('warning: Python 3.6.0 and 3.6.1 have '
80 print('warning: Python 3.6.0 and 3.6.1 have '
81 'a bug which breaks Mercurial')
81 'a bug which breaks Mercurial')
82 print('(see https://bugs.python.org/issue29714 for details)')
82 print('(see https://bugs.python.org/issue29714 for details)')
83 # TODO(augie): uncomment exit when Python 3.6.2 is available
83 sys.exit(1)
84 # sys.exit(1)
85
84
86 rt = subprocess.Popen([opts.python3, 'run-tests.py', '-j', str(opts.j),
85 rt = subprocess.Popen([opts.python3, 'run-tests.py', '-j', str(opts.j),
87 '--blacklist', opts.working_tests, '--json'])
86 '--blacklist', opts.working_tests, '--json'])
General Comments 0
You need to be logged in to leave comments. Login now