Ignore unreachable code in test environment, we have now 99% of coverage

This commit is contained in:
Yohann D'ANELLO
2020-11-10 21:32:42 +01:00
parent 7173d13495
commit 3416ce2ac3
3 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ class Bootstrap:
@staticmethod
def run_game():
with TermManager() as term_manager:
with TermManager() as term_manager: # pragma: no cover
game = Game()
game.new_game()
display = DisplayManager(term_manager.screen, game)