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

Class CwdSnapshot

src/_pytest/pytester.py:625–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

623
624
625class CwdSnapshot:
626 def __init__(self) -> None:
627 self.__saved = os.getcwd()
628
629 def restore(self) -> None:
630 os.chdir(self.__saved)
631
632
633class SysModulesSnapshot:

Callers 2

test_cwd_snapshotFunction · 0.90
__init__Method · 0.85

Calls

no outgoing calls

Tested by 2

test_cwd_snapshotFunction · 0.72
__init__Method · 0.68