##// END OF EJS Templates
tests: print the actual timeout value used in `wait-on-file`...
tests: print the actual timeout value used in `wait-on-file` Previously, it was printing the time passed in, prior to it being scaled up to account for a longer timeout.

File last commit:

r52757:1c5810ce default
r52840:9cfc95e9 default
Show More
__main__.py
15 lines | 252 B | text/x-python | PythonLexer
from __future__ import annotations
def run():
from . import demandimport
with demandimport.tracing.log('hg script'):
demandimport.enable()
from . import dispatch
dispatch.run()
if __name__ == '__main__':
run()