From 1e0e35404f1efc39836553f2cd1a8ca7e05274a4 Mon Sep 17 00:00:00 2001 From: James McCreight Date: Thu, 17 Oct 2024 15:57:53 -0600 Subject: [PATCH] suppress warnings temporarily in CI part 4, pathlib detail --- autotest_exs/test_notebooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotest_exs/test_notebooks.py b/autotest_exs/test_notebooks.py index df6cb2f0..28bc7c7c 100644 --- a/autotest_exs/test_notebooks.py +++ b/autotest_exs/test_notebooks.py @@ -37,7 +37,7 @@ def test_notebooks(notebook): ipython = bin_path / "ipython" assert ipython.exists(), f"ipython not found at: {ipython}" - if "06" == str(notebook)[0:2]: + if "06" == str(notebook.name)[0:2]: cmd = ["ipython", "-Wignore", str(nb_py)] else: cmd = ["ipython", str(nb_py)]