(rootdir: Path)
| 18 | |
| 19 | @pytest.fixture(scope='module', autouse=True) |
| 20 | def _setup_module(rootdir: Path) -> Iterator[None]: |
| 21 | saved_path = sys.path.copy() |
| 22 | sys.path.insert(0, str(rootdir / 'test-api-set-translator')) |
| 23 | yield |
| 24 | sys.path[:] = saved_path |
| 25 | |
| 26 | |
| 27 | @pytest.mark.sphinx('html', testroot='root') |
nothing calls this directly
no test coverage detected
searching dependent graphs…