From c13550cf8362fc22b095f96b1721068fc2ef5d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Mon, 24 Apr 2023 18:57:07 +0200 Subject: [PATCH] Tweak ipynb testing --- tests/test_ipython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ipython.py b/tests/test_ipython.py index a765468..d74f47f 100644 --- a/tests/test_ipython.py +++ b/tests/test_ipython.py @@ -10,7 +10,7 @@ class TestNotebooks(TestCase): notebook = os.path.join(ROOT, "../docs/tutorial/soil_tutorial.ipynb") with open(notebook) as f: nb = nbformat.read(f, as_version=4) - ep = ExecutePreprocessor(timeout=60000, kernel_name='python3') + ep = ExecutePreprocessor(timeout=60000) try: assert ep.preprocess(nb) is not None, f"Got empty notebook for {notebook}" except Exception: