(connection, scope, engine)
| 84 | |
| 85 | @pytest.fixture |
| 86 | def ctx(connection, scope, engine): |
| 87 | return Context( |
| 88 | engine=engine, |
| 89 | scope=scope, |
| 90 | connection=connection, |
| 91 | scope_config=ScopeConfig(), |
| 92 | options={} |
| 93 | ) |
| 94 | |
| 95 | |
| 96 | @pytest.fixture |
nothing calls this directly
no test coverage detected