Read UTF-8 test fixtures with explicit encoding (#3245)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
ShuQingDollarVoyager
2026-08-14 18:08:55 +08:00
committed by GitHub
parent 6e304527a5
commit 2378e560fb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ else: # pragma: lax no cover
STORIES_DIR = Path(stories.__file__).parent
BASE_URL = "http://127.0.0.1:8000"
MANIFEST = tomllib.loads((STORIES_DIR / "manifest.toml").read_text())
MANIFEST = tomllib.loads((STORIES_DIR / "manifest.toml").read_text(encoding="utf-8"))
DEFAULTS: dict[str, Any] = MANIFEST["defaults"]
STORIES: dict[str, dict[str, Any]] = MANIFEST["story"]
+1 -1
View File
@@ -27,7 +27,7 @@ _LOWLEVEL_STORIES = [name for name in sorted(STORIES) if story_cfg(name)["lowlev
def _parse(path: Path) -> ast.Module:
"""Parse ``path`` into an AST module."""
return ast.parse(path.read_text(), filename=str(path))
return ast.parse(path.read_text(encoding="utf-8"), filename=str(path))
def _resolve(node: ast.ImportFrom, package: str) -> str: