Author: gnichols Date: 2011-03-25 11:39:37 +0000 (Fri, 25 Mar 2011) New Revision: 831
Modified: trunk/v7/hardwaretest.py Log: 690338 - v7 certify --mode auto prompts user
Modified: trunk/v7/hardwaretest.py =================================================================== --- trunk/v7/hardwaretest.py 2011-03-23 16:19:24 UTC (rev 830) +++ trunk/v7/hardwaretest.py 2011-03-25 11:39:37 UTC (rev 831) @@ -815,8 +815,8 @@ if not self.ui.promptConfirm("Verification failed, would you like to continue testing?"): return False
- # otherwise overriding verification failure, or passed verification and user continue - if not verified or self.ui.promptConfirm("Run these tests?") or self.options.mode == Constants.auto: + # otherwise overriding verification failure, or mode auto, or passed verification and user continue + if not verified or self.options.mode == Constants.auto or self.ui.promptConfirm("Run these tests?"): return self._doRun(tests) elif self.options.mode == Constants.auto: print "There are no outstanding non-interactive tests"
v7-commits@lists.stg.fedorahosted.org