##// END OF EJS Templates
run-tests: skipped test should not produce 'i' mark while retesting...
anuraggoel -
r21739:11e5ad03 default
parent child Browse files
Show More
@@ -1106,7 +1106,8 b' class TestResult(unittest._TextTestResul'
1106 if self.showAll:
1106 if self.showAll:
1107 self.stream.writeln('ignored %s' % reason)
1107 self.stream.writeln('ignored %s' % reason)
1108 else:
1108 else:
1109 self.stream.write('i')
1109 if reason != 'not retesting':
1110 self.stream.write('i')
1110 self.stream.flush()
1111 self.stream.flush()
1111
1112
1112 def addWarn(self, test, reason):
1113 def addWarn(self, test, reason):
General Comments 0
You need to be logged in to leave comments. Login now