chore: snapshot workflow migration progress

This commit is contained in:
2026-04-12 11:49:04 +02:00
parent 0cd02513d5
commit 3e810c74a3
163 changed files with 31774 additions and 2753 deletions
@@ -0,0 +1,12 @@
from app.api.routers.admin import SETTINGS_DEFAULTS, _settings_to_out
def test_settings_to_out_uses_consistent_tessellation_fallbacks() -> None:
raw = dict(SETTINGS_DEFAULTS)
raw.pop("scene_angular_deflection", None)
raw.pop("render_angular_deflection", None)
settings = _settings_to_out(raw)
assert settings.scene_angular_deflection == 0.1
assert settings.render_angular_deflection == 0.05