##// END OF EJS Templates
run-tests: display the time it took to install Mercurial...
marmoute -
r50392:1baf0fff default
parent child Browse files
Show More
@@ -3444,6 +3444,7 b' class TestRunner:'
3444 3444 if self.options.list_tests:
3445 3445 result = runner.listtests(suite)
3446 3446 else:
3447 install_start_time = time.monotonic()
3447 3448 self._usecorrectpython()
3448 3449 if self._installdir:
3449 3450 self._installhg()
@@ -3457,6 +3458,11 b' class TestRunner:'
3457 3458 elif self.options.pyoxidized:
3458 3459 self._build_pyoxidized()
3459 3460 self._use_correct_mercurial()
3461 install_end_time = time.monotonic()
3462 if self._installdir:
3463 msg = 'installed Mercurial in %.2f seconds'
3464 msg %= install_end_time - install_start_time
3465 log(msg)
3460 3466
3461 3467 log(
3462 3468 'running %d tests using %d parallel processes'
General Comments 0
You need to be logged in to leave comments. Login now