(self)
| 201 | @requires.gil_enabled |
| 202 | @requires.greenlet |
| 203 | def test_asyncio(self): |
| 204 | try: |
| 205 | make_url("sqlite+aiosqlite://").get_dialect().import_dbapi() |
| 206 | except ImportError: |
| 207 | skip_test("missing aiosqile") |
| 208 | self._run_doctest("orm/extensions/asyncio.rst") |
| 209 | |
| 210 | |
| 211 | # increase number to force pipeline run. 1 |
nothing calls this directly
no test coverage detected