comparison tests/run-tests.py @ 52592:87ceb51d124c

run-tests: drop jython support I don't think we heard anything about jython support for the past 15 years, so let's drop special support for it in run-tests.py it is most probably broken at that point.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 02 Jan 2025 14:50:06 +0100
parents 69b64f8da6cd
children eef540baab65
comparison
equal deleted inserted replaced
52591:69b64f8da6cd 52592:87ceb51d124c
369 369
370 return p 370 return p
371 371
372 372
373 IMPL_PATH = b'PYTHONPATH' 373 IMPL_PATH = b'PYTHONPATH'
374 if 'java' in sys.platform:
375 IMPL_PATH = b'JYTHONPATH'
376 374
377 default_defaults = { 375 default_defaults = {
378 'jobs': ('HGTEST_JOBS', multiprocessing.cpu_count()), 376 'jobs': ('HGTEST_JOBS', multiprocessing.cpu_count()),
379 'timeout': ('HGTEST_TIMEOUT', 360 if not WINDOWS else 360 * 4), 377 'timeout': ('HGTEST_TIMEOUT', 360 if not WINDOWS else 360 * 4),
380 'slowtimeout': ('HGTEST_SLOWTIMEOUT', 1500), 378 'slowtimeout': ('HGTEST_SLOWTIMEOUT', 1500),