There was an error while loading. Please reload this page.
1 parent bf27612 commit 125356cCopy full SHA for 125356c
1 file changed
tests/test_notebook_integrity.py
@@ -39,7 +39,7 @@ def test_notebook_execution(notebook_path: str) -> None:
39
if not path.exists():
40
pytest.skip(f"Notebook {notebook_path} not found")
41
42
- with open(path) as f:
+ with open(path, encoding="utf-8") as f:
43
nb = nbformat.read(f, as_version=4)
44
45
client = NotebookClient(nb, timeout=60, kernel_name="python3")
0 commit comments