| Total Complexity | 1 | 
| Total Lines | 13 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | """Unit tests configuration file."""  | 
            ||
| 2 | |||
| 3 | import logging  | 
            ||
| 4 | |||
| 5 | |||
| 6 | def pytest_configure(config):  | 
            ||
| 7 | """Disable verbose output when running tests."""  | 
            ||
| 8 | _logger = logging.getLogger()  | 
            ||
| 9 | _logger.setLevel(logging.DEBUG)  | 
            ||
| 10 | |||
| 11 |     terminal = config.pluginmanager.getplugin('terminal') | 
            ||
| 12 | terminal.TerminalReporter.showfspath = False  | 
            ||
| 13 |