Python deshabilitar el registro en unittest

# test.py
import logging

logging.disable(logging.CRITICAL)
Grumpy Guanaco