chore(release): v0.25.0 — reviewed_real + twin review-propagation

This commit is contained in:
2026-08-25 00:45:33 +00:00
parent 7aae0208f8
commit 4a581e0e67
4 changed files with 43 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
from __future__ import annotations
import os, sys
from pathlib import Path
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from sfm.database import SeismoDb
from minimateplus.models import Event
def test_query_events_includes_reviewed_real(tmp_path: Path):
db = SeismoDb(tmp_path / "s.db")
ev = Event(index=0)
ev._waveform_key = bytes.fromhex("01110000")
db.insert_events([ev], serial="BE1")
assert "reviewed_real" in db.query_events(serial="BE1")[0]