()
| 54 | # yields. so for now execute at import time. |
| 55 | #@pytest.fixture(autouse=True, scope='session') |
| 56 | def inject(): |
| 57 | |
| 58 | builtins.get_ipython = get_ipython |
| 59 | builtins._ip = get_ipython() |
| 60 | builtins.ip = get_ipython() |
| 61 | builtins.ip.system = types.MethodType(xsys, ip) |
| 62 | builtins.ip.builtin_trap.activate() |
| 63 | from .core import page |
| 64 | |
| 65 | page.pager_page = nopage |
| 66 | # yield |
| 67 | |
| 68 | |
| 69 | inject() |
no test coverage detected