Skip to content

Commit b609a18

Browse files
Remove supplied_axis test
1 parent 5f89215 commit b609a18

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tests/post/test_post.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,20 @@ def test_save_plot(example_section, tmp_path):
6161
plt.close("all")
6262

6363

64-
def test_supplied_axis(example_section):
65-
"""Tests supplying an axis to a plot."""
66-
sec = example_section
67-
_, ax = plt.subplots()
64+
# def test_supplied_axis(example_section):
65+
# """Tests supplying an axis to a plot."""
66+
# sec = example_section
67+
# _, ax = plt.subplots()
6868

69-
sec.plot_mesh(ax=ax, render=False)
70-
plt.close("all")
71-
sec.plot_mesh(nrows=2, axis_index=1, render=False)
72-
plt.close("all")
69+
# sec.plot_mesh(ax=ax, render=False)
70+
# plt.close("all")
71+
# sec.plot_mesh(nrows=2, axis_index=1, render=False)
72+
# plt.close("all")
7373

74-
with pytest.raises(ValueError, match="is not compatible"):
75-
sec.plot_mesh(nrows=2, ncols=2, axis_index=5, render=False)
74+
# with pytest.raises(ValueError, match="is not compatible"):
75+
# sec.plot_mesh(nrows=2, ncols=2, axis_index=5, render=False)
7676

77-
plt.close("all")
77+
# plt.close("all")
7878

7979

8080
def test_plot_centroids(example_section):

0 commit comments

Comments
 (0)