We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5737af9 commit a2e1bcfCopy full SHA for a2e1bcf
pytest_jupyter/jupyter_server.py
@@ -254,9 +254,9 @@ def jp_kernelspecs(jp_data_dir):
254
255
256
@pytest.fixture(params=[True, False])
257
-def jp_contents_manager(request, jp_root_dir):
+def jp_contents_manager(request, tmp_path):
258
"""Returns a FileContentsManager instance based on the use_atomic_writing parameter value."""
259
- return FileContentsManager(root_dir=str(jp_root_dir), use_atomic_writing=request.param)
+ return FileContentsManager(root_dir=str(tmp_path), use_atomic_writing=request.param)
260
261
262
@pytest.fixture
0 commit comments