diff --git a/tests/test_corrupted_files.py b/tests/test_corrupted_files.py index 5af0e811b2a9b513f339b0151e87b918bc3ee042..4ac26783c0ed27da34f02a8286be68504828ced7 100644 --- a/tests/test_corrupted_files.py +++ b/tests/test_corrupted_files.py @@ -3,9 +3,15 @@ import unittest import shutil import os +import logging from libmat2 import pdf, images, audio, office, parser_factory, torrent, harmless +# No need to logging messages, should something go wrong, +# the testsuite _will_ fail. +logger = logging.getLogger() +logger.setLevel(logging.FATAL) + class TestInexistentFiles(unittest.TestCase): def test_ro(self):