Author: gnichols Date: 2010-12-15 17:02:29 +0000 (Wed, 15 Dec 2010) New Revision: 688
Modified: trunk/v7/test.py Log: 659789 - Enhance command set for better usability and control of testing
Modified: trunk/v7/test.py =================================================================== --- trunk/v7/test.py 2010-12-15 17:00:33 UTC (rev 687) +++ trunk/v7/test.py 2010-12-15 17:02:29 UTC (rev 688) @@ -93,8 +93,9 @@ def __cmp__(self, other): if TestTag.interactive in self.tags() and not TestTag.interactive in other.tags(): return -1 - if TestTag.interactive in other.tags() and not TestTag.interactive in self.tags(): + if not TestTag.interactive in self.tags() and TestTag.interactive in other.tags(): return 1 + # low means run before high if self.priority < other.priority: return -1 if self.priority > other.priority:
v7-commits@lists.stg.fedorahosted.org