From 6e59ac798237be0aa40f792e4e9540334937fe1e Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 21 Nov 2023 00:38:04 -0600 Subject: [PATCH] use joinpath for notebooks --- tests/test_notebooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_notebooks.py b/tests/test_notebooks.py index 750dc35169..bc005f2201 100644 --- a/tests/test_notebooks.py +++ b/tests/test_notebooks.py @@ -12,7 +12,7 @@ @pytest.fixture() def common_kwargs(tmp_path): - outputnb = tmp_path.join('output.ipynb') + outputnb = tmp_path.joinpath('output.ipynb') return { 'output_path': str(outputnb), 'kernel_name': f'python{sys.version_info.major}',