Initial GeoIntel V1 foundation
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-16 23:36:32 +02:00
commit 6ea3586a3e
605 changed files with 45284 additions and 0 deletions
@@ -0,0 +1,10 @@
from pathlib import Path
def test_alembic_logging_formatter_uses_runtime_interpolation_tokens() -> None:
config = Path(__file__).resolve().parents[1] / "alembic.ini"
content = config.read_text(encoding="utf-8")
assert "format = %(levelname)-5.5s [%(name)s] %(message)s" in content
assert "%%(levelname)" not in content
assert "%%(message)" not in content