Parcourir la source

Bug-Fix coverage output

master
Dirk Alders il y a 3 ans
Parent
révision
034b9db5a2
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1
    0
      output.py

+ 1
- 0
output.py Voir le fichier

@@ -66,6 +66,7 @@ def print_info(txt, default_color=termcolors.ENDC):
66 66
 
67 67
 def coverage_output(lcov, bcov, length=None):
68 68
     if lcov is None or bcov is None:
69
+        length = length or len(STATUS_UNKNOWN)
69 70
         return (length - len(STATUS_UNKNOWN)) * ' ' + status_output(STATUS_UNKNOWN, termcolors.FAIL)
70 71
     elif lcov > 90:
71 72
         rv = termcolors.OKGREEN + '%3d%% (%3d%%)' % (lcov, bcov) + termcolors.ENDC

Chargement…
Annuler
Enregistrer