Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
trexfeathers committed Mar 13, 2024
1 parent 7c4f700 commit 68f81ac
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions lib/iris/tests/test_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,16 @@ def setUp(self):
@tests.skip_data
@tests.skip_plot
class Test1dScatter:
@pytest.fixture(autouse=True)
def set_draw_method(self):
self.draw_method = iplt.scatter

@pytest.fixture(autouse=True)
def setup(self, check_graphic_caller):
self.cube = iris.load_cube(
tests.get_data_path(("NAME", "NAMEIII_trajectory.txt")),
"Temperature",
)
self.draw_method = iplt.scatter
self.check_graphic = check_graphic_caller

def test_coord_coord(self):
Expand Down Expand Up @@ -294,12 +297,8 @@ def test_cube_cube(self):
@tests.skip_data
@tests.skip_plot
class Test1dQuickplotScatter(Test1dScatter):
def setUp(self):
tests.GraphicsTest.setUp(self)
self.cube = iris.load_cube(
tests.get_data_path(("NAME", "NAMEIII_trajectory.txt")),
"Temperature",
)
@pytest.fixture(autouse=True)
def set_draw_method(self):
self.draw_method = qplt.scatter


Expand Down

0 comments on commit 68f81ac

Please sign in to comment.