Skip to content

Commit

Permalink
remove windrose test
Browse files Browse the repository at this point in the history
phobson committed Dec 17, 2024
1 parent 187fad3 commit 8374c7f
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions cloudside/tests/test_viz.py
Original file line number Diff line number Diff line change
@@ -161,25 +161,6 @@ def test_rose(test_data):
return fig


@pytest.mark.mpl_image_compare(**IMG_OPTS)
def test_windrose_short(short_data):
fig, ax1, ax2 = _make_polar_fig()
with warnings.catch_warnings():
warnings.simplefilter("ignore")
_ = viz.windRose(
short_data.assign(WindSpd=short_data["WindSpd"] * 1.15),
spd_units="mph",
ax=ax1,
spdcol="WindSpd",
dircol="WindDir",
)
_ = viz.windRose(
short_data, spdcol="WindSpd", dircol="WindDir", spd_units="kt", ax=ax2
)
quiet_layout(fig)
return fig


@pytest.mark.mpl_image_compare(**IMG_OPTS)
def test_rose_short(short_data):
fig, ax1, ax2 = _make_polar_fig()

0 comments on commit 8374c7f

Please sign in to comment.