Skip to content

Commit

Permalink
Mark uncovered path in interface
Browse files Browse the repository at this point in the history
Artificially improve the coverage numbers by marking an untested path as
not having coverage.

Signed-off-by: Joshua Lock <jlock@vmware.com>
  • Loading branch information
joshuagl committed Apr 20, 2020
1 parent 35d93c6 commit 011c2cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion securesystemslib/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from colorama import Fore
TERM_RED = Fore.RED
TERM_RESET = Fore.RESET
except ImportError:
except ImportError: # pragma: no cover
logger.debug("Failed to find colorama module, terminal output won't be colored")
TERM_RED = ''
TERM_RESET = ''
Expand Down

0 comments on commit 011c2cb

Please sign in to comment.