Skip to content

Commit c1f4250

Browse files
committed
fixtures
1 parent 928b2e8 commit c1f4250

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/iris/tests/unit/analysis/test_MAX.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def test_lazy_collapse(self):
4242

4343

4444
class Test_masked:
45+
@pytest.fixture(autouse=True)
4546
def _setup(self):
4647
self.cube = Cube(ma.masked_greater([1, 2, 3, 4, 5], 3))
4748
self.cube.add_dim_coord(DimCoord([6, 7, 8, 9, 10], long_name="foo"), 0)
@@ -52,6 +53,7 @@ def test_ma(self):
5253

5354

5455
class Test_lazy_masked:
56+
@pytest.fixture(autouse=True)
5557
def _setup(self):
5658
masked_data = ma.masked_greater([1, 2, 3, 4, 5], 3)
5759
self.cube = Cube(as_lazy_data(masked_data))

0 commit comments

Comments
 (0)