From 88ad62abad7c4f38b8ec6832be48615d407dc42a Mon Sep 17 00:00:00 2001 From: Patrick Peglar Date: Thu, 12 Nov 2015 11:52:12 +0000 Subject: [PATCH] Make skip_grib message clearer. --- lib/iris/tests/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/iris/tests/__init__.py b/lib/iris/tests/__init__.py index e8e670edb1..752e39d0a6 100644 --- a/lib/iris/tests/__init__.py +++ b/lib/iris/tests/__init__.py @@ -813,7 +813,8 @@ class MyPlotTests(test.GraphicsTest): if six.PY3: skip_grib = unittest.skipIf( True, - 'Test(s) use "grib", which is not currently supported under Python 3.') + ('Test(s) require "gribapi", ' + 'which is not currently supported under Python 3.')) else: skip_grib = unittest.skipIf( not GRIB_AVAILABLE,