We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dbd713 commit a4fdf74Copy full SHA for a4fdf74
virtualizarr/tests/test_readers/conftest.py
@@ -387,7 +387,7 @@ def scalar_fill_value_hdf5_file(tmpdir):
387
388
@pytest.fixture(params=fill_values)
389
def cf_fill_value_hdf5_file(tmpdir, request):
390
- filepath = f"{tmpdir}/cf_fill_value_{request.param['label']}.nc"
+ filepath = tmp_path / f"cf_fill_value_{request.param['label']}.nc"
391
f = h5py.File(filepath, "w")
392
dset = f.create_dataset(name="data", data=request.param["data"], chunks=True)
393
dim_scale = f.create_dataset(
0 commit comments