for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""Unit tests configuration file."""
import logging
def pytest_configure(config):
"""Disable verbose output when running tests."""
_logger = logging.getLogger()
_logger.setLevel(logging.DEBUG)
terminal = config.pluginmanager.getplugin('terminal')
terminal.TerminalReporter.showfspath = False