| Conditions | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Unit tests configuration file.""" |
||
| 20 | def pytest_configure(config): |
||
| 21 | """Disable verbose output when running tests.""" |
||
| 22 | _logger = logging.getLogger() |
||
| 23 | _logger.setLevel(logging.DEBUG) |
||
| 24 | |||
| 25 | terminal = config.pluginmanager.getplugin('terminal') |
||
| 26 | terminal.TerminalReporter.showfspath = False |
||
| 27 | |||
| 32 |