testing: give hint to set MOZREVIEW_HOME
This is a clear UX win if set. Encourage it.
--- a/testing/vcttesting/mozreview_mach_commands.py
+++ b/testing/vcttesting/mozreview_mach_commands.py
@@ -38,16 +38,18 @@ class MozReviewCommands(object):
mercurial_port=mercurial_port,
verbose=True)
print('Bugzilla URL: %s' % mr.bugzilla_url)
print('Review Board URL: %s' % mr.reviewboard_url)
print('Mercurial URL: %s' % mr.mercurial_url)
print('Admin username: %s' % mr.admin_username)
print('Admin password: %s' % mr.admin_password)
+ print('Run the following to use this instance with all future commands:')
+ print(' export MOZREVIEW_HOME=%s' % mr._path)
@Command('stop', category='mozreview',
description='Stop a MozReview instance')
@CommandArgument('where', nargs='?',
help='Directory of MozReview instance')
def stop(self, where):
mr = self._get_mozreview(where)
mr.stop()