feat(visualization): allow remote viewer + compress rerun images (#2756)

* feat(visualization): allow remote viewer + compress rerun images

* fix(tests): allow named argument in mocked rerun

* feat(visualization): ip instead or url & cli arg for compressing images
This commit is contained in:
Steven Palma
2026-01-07 17:30:45 +01:00
committed by GitHub
parent 7e9d05a799
commit f844c7a458
5 changed files with 69 additions and 11 deletions
+4 -1
View File
@@ -41,7 +41,10 @@ def mock_rerun(monkeypatch):
def __init__(self, arr):
self.arr = arr
def dummy_log(key, obj, **kwargs):
def dummy_log(key, obj=None, **kwargs):
# Accept either positional `obj` or keyword `entity` and record remaining kwargs.
if obj is None and "entity" in kwargs:
obj = kwargs.pop("entity")
calls.append((key, obj, kwargs))
dummy_rr = SimpleNamespace(