fix: bound detection QA to inference coverage
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 00:35:39 +02:00
parent 2f9898bc82
commit 0cad8fdf76
12 changed files with 159 additions and 45 deletions
@@ -42,6 +42,9 @@ class FakeQuery:
def first(self):
return self.rows[0] if self.rows else None
def count(self):
return len(self.rows)
class FakeSession:
def __init__(self, objects=None, query_rows=None) -> None: