Mercurial > public > mercurial-scm > hg-stable
changeset 52624:deb8afb8448e
run-tests: clean the last usage of IMPL_PATH up
We no longer need this indirection, and the other users are gone.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 02 Jan 2025 14:57:40 +0100 |
parents | 003cb26c735b |
children | cd7dcccc3327 |
files | tests/run-tests.py |
diffstat | 1 files changed, 1 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/run-tests.py Thu Jan 02 14:56:03 2025 +0100 +++ b/tests/run-tests.py Thu Jan 02 14:57:40 2025 +0100 @@ -374,8 +374,6 @@ return p -IMPL_PATH = b'PYTHONPATH' - default_defaults = { 'jobs': ('HGTEST_JOBS', multiprocessing.cpu_count()), 'timeout': ('HGTEST_TIMEOUT', 360 if not WINDOWS else 360 * 4), @@ -3437,11 +3435,7 @@ vlog("# Using RUNTESTDIR", _bytes2sys(osenvironb[b'RUNTESTDIR'])) vlog("# Using HGTMP", _bytes2sys(self._hgtmp)) vlog("# Using PATH", os.environ["PATH"]) - vlog( - "# Using", - _bytes2sys(IMPL_PATH), - _bytes2sys(osenvironb.get(IMPL_PATH, b"")) - ) + vlog("# Using PYTHONPATH", os.environ.get("PYTHONPATH", "")) vlog("# Writing to directory", _bytes2sys(self._outputdir)) if shard_total is not None: