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 65a5b4d commit 94612a3Copy full SHA for 94612a3
1 file changed
tests/test_postprocess.py
@@ -79,7 +79,8 @@ def test_include_projection_coordinates_with_xgcm(sample_dataset):
79
from xgcm import Grid
80
81
dataset = xwrf.postprocess._include_projection_coordinates(sample_dataset)
82
- grid = Grid(dataset)
+ with pytest.warns(DeprecationWarning):
83
+ grid = Grid(dataset, periodic=False)
84
85
assert grid.axes['Y'].coords['center'] == 'south_north'
86
assert grid.axes['Y'].coords['outer'] == 'south_north_stag'
0 commit comments