()
| 13 | |
| 14 | |
| 15 | def _modules() -> List[str]: |
| 16 | pytest_pkg: str = _pytest.__path__ # type: ignore |
| 17 | return sorted( |
| 18 | n |
| 19 | for _, n, _ in pkgutil.walk_packages(pytest_pkg, prefix=_pytest.__name__ + ".") |
| 20 | ) |
| 21 | |
| 22 | |
| 23 | @pytest.mark.slow |
nothing calls this directly
no outgoing calls
no test coverage detected