Fix static file check and associated tests

This commit is contained in:
Julian Stirling 2026-02-15 16:03:06 +00:00
parent a2565adcba
commit d4f26e8536
2 changed files with 14 additions and 18 deletions

View file

@ -85,8 +85,7 @@ def check_static_dir() -> None:
"web app."
)
expected = [
os.path.isdir(os.path.join(STATIC_PATH, "js")),
os.path.isdir(os.path.join(STATIC_PATH, "css")),
os.path.isdir(os.path.join(STATIC_PATH, "assets")),
os.path.isfile(os.path.join(STATIC_PATH, "index.html")),
]
if not all(expected):