From 560e9ee6dbf3d7638383e87a5d84ad1de3e619a6 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 28 Jan 2021 18:06:54 +0100 Subject: [PATCH] =?UTF-8?q?On=20ne=20cherche=20pas=20=C3=A0=20couvrir=20ce?= =?UTF-8?q?=20qui=20n'est=20pas=20testable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Yohann D'ANELLO --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index dbe36d0..dfee3b4 100755 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ from random import choice import sys -def main(): +def main(): # pragma: nocover """ Fonction principale, qui va attendre les instructions de l'utilisateur. """ @@ -117,5 +117,5 @@ def stop(exit_code: int = 0): sys.exit(exit_code) -if __name__ == '__main__': +if __name__ == '__main__': # pragma: nocover main()