Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions lib/iris/tests/integration/test_grib_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@
import iris.exceptions
import iris.tests.stock
import iris.util
from unittest import skipIf

# Skip out some tests that fail now that grib edition 2 files no longer use
# the GribWrapper.
# TODO: either fix these problems, or remove the tests.
skip_irisgrib_fails = skipIf(
True, "Test(s) are not currently usable with the new " "grib 2 loader."
)


@tests.skip_data
Expand Down Expand Up @@ -68,13 +60,6 @@ def test_load_masked(self):
cubes = iris.load(gribfile)
self.assertCML(cubes, ("grib_load", "missing_values_grib2.cml"))

@skip_irisgrib_fails
def test_y_fastest(self):
cubes = iris.load(
tests.get_data_path(("GRIB", "y_fastest", "y_fast.grib2"))
)
self.assertCML(cubes, ("grib_load", "y_fastest.cml"))

def test_polar_stereo_grib1(self):
cube = iris.load_cube(
tests.get_data_path(("GRIB", "polar_stereo", "ST4.2013052210.01h"))
Expand Down