MCPcopy Create free account
hub / github.com/pytest-dev/pytest / temporary_verbosity

Function temporary_verbosity

testing/python/approx.py:48–54  ·  view source on GitHub ↗
(config, verbosity=0)

Source from the content-addressed store, hash-verified

46
47@contextmanager
48def temporary_verbosity(config, verbosity=0):
49 original_verbosity = config.getoption("verbose")
50 config.option.verbose = verbosity
51 try:
52 yield
53 finally:
54 config.option.verbose = original_verbosity
55
56
57@pytest.fixture

Callers 1

do_assertFunction · 0.85

Calls 1

getoptionMethod · 0.45

Tested by

no test coverage detected