From 46a03f29b469982e25045b8443e988ce25a73b0d Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Mon, 26 Jan 2015 11:53:41 -0500 Subject: [PATCH] =?UTF-8?q?skip=20image=20tests=20(we=E2=80=99re=20removin?= =?UTF-8?q?g=20these=20methods=20for=20now)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plotly/tests/test_optional/test_ipython/test_embed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plotly/tests/test_optional/test_ipython/test_embed.py b/plotly/tests/test_optional/test_ipython/test_embed.py index 417f0c9babc..587b3f20a8e 100644 --- a/plotly/tests/test_optional/test_ipython/test_embed.py +++ b/plotly/tests/test_optional/test_ipython/test_embed.py @@ -5,13 +5,14 @@ import threading import six import unittest +from unittest import skip version = six.sys.version_info[:2] # need this for conditional testing # unittest `skipIf` not supported in 2.6 and IPython not supported in 2.6/3.2 if version < (2, 7) or (2, 7) < version < (3, 3): pass else: - + @skip class TestPlotlyDisplay(unittest.TestCase): def setUp(self):