(
url=None,
options=None,
asyncio=False,
)
| 172 | from .. import engines |
| 173 | |
| 174 | def gen_testing_engine( |
| 175 | url=None, |
| 176 | options=None, |
| 177 | asyncio=False, |
| 178 | ): |
| 179 | if options is None: |
| 180 | options = {} |
| 181 | options["scope"] = "fixture" |
| 182 | return engines.testing_engine( |
| 183 | url=url, |
| 184 | options=options, |
| 185 | asyncio=asyncio, |
| 186 | ) |
| 187 | |
| 188 | yield gen_testing_engine |
| 189 |
nothing calls this directly
no test coverage detected