Skip to content

Commit 11ed59a

Browse files
nedsebCopilot
andauthored
Update tests/conftest.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent abb95bc commit 11ed59a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def load_scenarios():
5656
scenarios_dir = Path(__file__).parent / "scenarios"
5757
scenarios = []
5858
for yaml_file in sorted(scenarios_dir.glob("*.yaml")):
59-
with open(yaml_file) as f:
59+
with open(yaml_file, encoding="utf-8") as f:
6060
scenario = yaml.safe_load(f)
6161
scenario["_file"] = yaml_file.name
6262
scenarios.append(scenario)

0 commit comments

Comments
 (0)