(store: Store)
| 29 | |
| 30 | |
| 31 | def _select_all_repos(store: Store) -> list[tuple[str, str, str]]: |
| 32 | with store.connect() as db: |
| 33 | return db.execute('SELECT repo, ref, path FROM repos').fetchall() |
| 34 | |
| 35 | |
| 36 | def test_our_session_fixture_works(): |
no test coverage detected