()
| 47 | |
| 48 | @pytest.fixture |
| 49 | def chdir_support(): |
| 50 | # Always do things relative to tests/_support |
| 51 | os.chdir(support) |
| 52 | yield |
| 53 | # Chdir back to project root to avoid problems |
| 54 | os.chdir(os.path.join(os.path.dirname(__file__), "..")) |
| 55 | |
| 56 | |
| 57 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…