Skip to content

Commit 39e9414

Browse files
address CI failures (#594)
1 parent 962707c commit 39e9414

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ ignore = [
7878
"PC180", # Uses prettier
7979
# https://learn.scientific-python.org/development/guides/packaging-simple#PP006
8080
"PP006", # Uses dev dependency group
81+
# https://learn.scientific-python.org/development/guides/tasks/#faster-with-uv
82+
"NOX101",
83+
"NOX102",
84+
"NOX201",
85+
"NOX202",
86+
"NOX203",
8187
]
8288

8389
[tool.mypy]

src/esmf_regrid/tests/unit/experimental/io/test_round_tripping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,9 @@ def test_grid_to_mesh_curvilinear_round_trip(tmp_path, regridder):
284284
def test_MeshESMFRegridder_masked_round_trip(tmp_path, rg_maker, regridder):
285285
"""Test save/load round tripping for the Mesh regridder classes."""
286286
if regridder == "unstructured":
287-
original_rg, src = rg_maker(masks=True)
287+
original_rg, _src = rg_maker(masks=True)
288288
else:
289-
original_rg, src = rg_maker(regridder=regridder, masks=True)
289+
original_rg, _src = rg_maker(regridder=regridder, masks=True)
290290
filename = tmp_path / "regridder.nc"
291291
save_regridder(original_rg, filename)
292292
loaded_rg = load_regridder(str(filename))

0 commit comments

Comments
 (0)