Passed
Push — master ( d6dd02...c311bb )
by Guibert
02:25
created

tests.conftest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
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