Skip to content

Commit

Permalink
Provide a test skipper for 2d coords WIP. (#3099)
Browse files Browse the repository at this point in the history
  • Loading branch information
pp-mo authored and corinnebosley committed Jul 31, 2018
1 parent 3f1dc9f commit 78f2e76
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 78f2e76

Please sign in to comment.