(self)
| 16 | |
| 17 | class Main: |
| 18 | def setup_method(self) -> None: |
| 19 | self.cwd = os.getcwd() |
| 20 | # Enter integration/_support as all support files are in there now |
| 21 | os.chdir(Path(__file__).parent / "_support") |
| 22 | |
| 23 | def teardown_method(self) -> None: |
| 24 | os.chdir(self.cwd) |