chore: remove unused imghdr import and dead CSS rules, fix attachment uploader DOM structure, add space after icon spans in templates, and increase test stderr capture limit

This commit is contained in:
2026-05-13 20:48:39 +00:00
parent 4958c23c0d
commit 1c5406204e
11 changed files with 23 additions and 16 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ def app_server(test_db_path):
proc.wait()
raise RuntimeError(
f"Server process died (exit code {poll}). "
f"Stderr:\n{stderr[:2000]}"
f"Stderr:\n{stderr[:5000]}"
)
time.sleep(0.5)
else:
@@ -82,7 +82,7 @@ def app_server(test_db_path):
proc.wait(timeout=5)
raise RuntimeError(
f"Server did not start after 30s. "
f"Stderr:\n{stderr[:2000]}"
f"Stderr:\n{stderr[:5000]}"
)
yield proc
try: