From ebca2009db47fa11de943ad1ca9bbfb9a0bc6c2e Mon Sep 17 00:00:00 2001 From: Patrick Peglar Date: Mon, 30 Jul 2018 10:38:02 +0100 Subject: [PATCH] Provide a test skipper for 2d coords WIP. --- lib/iris/tests/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/iris/tests/__init__.py b/lib/iris/tests/__init__.py index 8c64dc15b1..710a3fbac6 100644 --- a/lib/iris/tests/__init__.py +++ b/lib/iris/tests/__init__.py @@ -1196,6 +1196,12 @@ class MyPlotTests(test.GraphicsTest): 'Test(s) require "python-stratify", which is not available.') +SKIP_2D_TESTS = True +skip_2d = unittest.skipIf( + SKIP_2D_TESTS, + 'Test(s) broken by WIP on 2d coords support -- temporarily disabled.') + + def no_warnings(func): """ Provides a decorator to ensure that there are no warnings raised