##// END OF EJS Templates
run-tests: call the command using shell=True to please Windows...
run-tests: call the command using shell=True to please Windows Windows is unhappy about the lack of shell=True, probably because the "self._realhg" is a script instead of a Win32 executable.

File last commit:

r52755:607e94e0 default
r53436:4f2bbad8 default
Show More
__init__.py
7 lines | 156 B | text/x-python | PythonLexer
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 # name space package to host third party extensions
Matt Harbison
format: add many "missing" comma...
r52755
from __future__ import annotations
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 import pkgutil
Augie Fackler
formatting: blacken the codebase...
r43346
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 __path__ = pkgutil.extend_path(__path__, __name__)