From 9cd00a8baca82417124ebb3b0cb44df85eb25162 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Wed, 19 Jul 2023 15:47:07 -0500 Subject: [PATCH] Remove use of tmp_path --- test_netcdf.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test_netcdf.py b/test_netcdf.py index 35a2286d72..b6394a5860 100644 --- a/test_netcdf.py +++ b/test_netcdf.py @@ -1,9 +1,8 @@ import xarray as xr -def test_netcdf(tmp_path): - fn = "test.nc" - fk = tmp_path / fn +def test_netcdf(): + fk = "test.nc" # create a minimally fake netCDF file, otherwise satpy won't load the composite ds = xr.Dataset( coords={"nx": [0], "ny": [0]},