fix(ci): reformat test_project_status.py string literals

This commit is contained in:
opencode-agent 2026-08-05 03:36:59 +00:00
parent e1fd8f61f2
commit 60451d7fa3

View file

@ -255,16 +255,14 @@ def _make_fullstack_repo(tmp_path: Path) -> None:
(tmp_path / "frontend" / "static" / "icon.svg").write_text("<svg></svg>\n") (tmp_path / "frontend" / "static" / "icon.svg").write_text("<svg></svg>\n")
(tmp_path / "frontend" / "src").mkdir(parents=True, exist_ok=True) (tmp_path / "frontend" / "src").mkdir(parents=True, exist_ok=True)
(tmp_path / "frontend" / "src" / "app.html").write_text( (tmp_path / "frontend" / "src" / "app.html").write_text(
'<!doctype html><html><head>' "<!doctype html><html><head>"
'<meta name="viewport" content="width=device-width, initial-scale=1" />' '<meta name="viewport" content="width=device-width, initial-scale=1" />'
'<link rel="manifest" href="/manifest.webmanifest" />' '<link rel="manifest" href="/manifest.webmanifest" />'
'</head><body></body></html>\n' "</head><body></body></html>\n"
) )
(tmp_path / "frontend" / "tests" / "e2e").mkdir(parents=True, exist_ok=True) (tmp_path / "frontend" / "tests" / "e2e").mkdir(parents=True, exist_ok=True)
(tmp_path / "frontend" / "tests" / "e2e" / "mobile.spec.ts").write_text("// mobile\n") (tmp_path / "frontend" / "tests" / "e2e" / "mobile.spec.ts").write_text("// mobile\n")
(tmp_path / "frontend" / "tests" / "e2e" / "accessibility.spec.ts").write_text( (tmp_path / "frontend" / "tests" / "e2e" / "accessibility.spec.ts").write_text("// a11y\n")
"// a11y\n"
)
# ── parse_remote_url ───────────────────────────────────────────────────────── # ── parse_remote_url ─────────────────────────────────────────────────────────