Skip to content

Commit

Permalink
Provide a test skipper for 2d coords WIP. (SciTools#3099)
Browse files Browse the repository at this point in the history
  • Loading branch information
pp-mo authored and znicholls committed Jun 15, 2019
1 parent 44e6482 commit 471f3fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/iris/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 471f3fa

Please sign in to comment.