|
|
@ -326,7 +326,7 @@ class TerminalResult(CoverageResult): |
|
|
|
duration = end_time - self.start_time |
|
|
|
duration = end_time - self.start_time |
|
|
|
self.out.write( |
|
|
|
self.out.write( |
|
|
|
_Colors.FAIL |
|
|
|
_Colors.FAIL |
|
|
|
+ " [{}]ERROR {}[Duration: {}s]\n".format( |
|
|
|
+ " [{}]ERROR {}[Duration: {}]\n".format( |
|
|
|
datetime.datetime.now(), test.id(), duration |
|
|
|
datetime.datetime.now(), test.id(), duration |
|
|
|
) |
|
|
|
) |
|
|
|
+ _Colors.END |
|
|
|
+ _Colors.END |
|
|
@ -354,7 +354,7 @@ class TerminalResult(CoverageResult): |
|
|
|
duration = end_time - self.start_time |
|
|
|
duration = end_time - self.start_time |
|
|
|
self.out.write( |
|
|
|
self.out.write( |
|
|
|
_Colors.OK |
|
|
|
_Colors.OK |
|
|
|
+ " [{}]SUCCESS {}[Duration: {}s]\n".format( |
|
|
|
+ " [{}]SUCCESS {}[Duration: {}]\n".format( |
|
|
|
end_time, test.id(), duration |
|
|
|
end_time, test.id(), duration |
|
|
|
) |
|
|
|
) |
|
|
|
+ _Colors.END |
|
|
|
+ _Colors.END |
|
|
|