From 0420e360523e3452467bfc7d9bb19c3593cde2e7 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 5 Oct 2017 21:26:53 -0400 Subject: [PATCH 1/9] TST: Skip sphinxext if unavailable instead of error. Signed-off-by: Elliott Sales de Andrade --- lib/matplotlib/sphinxext/tests/test_tinypages.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/matplotlib/sphinxext/tests/test_tinypages.py b/lib/matplotlib/sphinxext/tests/test_tinypages.py index 5141a4cdd..6ee3e9e07 100644 --- a/lib/matplotlib/sphinxext/tests/test_tinypages.py +++ b/lib/matplotlib/sphinxext/tests/test_tinypages.py @@ -22,8 +22,7 @@ def setup_module(): ret = call([sys.executable, '-msphinx', '--help'], stdout=PIPE, stderr=PIPE) if ret != 0: - raise RuntimeError( - "'{} -msphinx' does not return 0".format(sys.executable)) + pytest.skip("'{} -msphinx' does not return 0".format(sys.executable)) @cbook.deprecated("2.1", alternative="filecmp.cmp") -- 2.13.5