MCPcopy Index your code
hub / github.com/pytest-dev/pytest / temporary_verbosity

Function temporary_verbosity

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

Source from the content-addressed store, hash-verified

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

Callers 2

do_assertFunction · 0.85

Calls 1

getoptionMethod · 0.80

Used in the wild real call sites across dependent graphs

searching dependent graphs…