test #10182
()
| 183 | |
| 184 | |
| 185 | async def async_test_exec_options() -> None: |
| 186 | """test #10182""" |
| 187 | |
| 188 | session = AsyncSession() |
| 189 | |
| 190 | await session.connection( |
| 191 | execution_options={"isolation_level": "REPEATABLE READ"} |
| 192 | ) |
| 193 | |
| 194 | scoped = async_scoped_session( |
| 195 | async_sessionmaker(), scopefunc=asyncio.current_task |
| 196 | ) |
| 197 | |
| 198 | await scoped.connection( |
| 199 | execution_options={"isolation_level": "REPEATABLE READ"} |
| 200 | ) |
| 201 | |
| 202 | |
| 203 | def test_13091() -> None: |
nothing calls this directly
no test coverage detected