Skip to content

Commit

Permalink
Remove use of tmp_path
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Jul 19, 2023
1 parent 5caeaf5 commit 9cd00a8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test_netcdf.py
Original file line number Diff line number Diff line change
@@ -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]},
Expand Down

0 comments on commit 9cd00a8

Please sign in to comment.