Skip to content

Commit 46a03f2

Browse files
committed
skip image tests (we’re removing these methods for now)
1 parent cbb2ee2 commit 46a03f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: plotly/tests/test_optional/test_ipython/test_embed.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
import threading
66
import six
77
import unittest
8+
from unittest import skip
89
version = six.sys.version_info[:2] # need this for conditional testing
910

1011
# unittest `skipIf` not supported in 2.6 and IPython not supported in 2.6/3.2
1112
if version < (2, 7) or (2, 7) < version < (3, 3):
1213
pass
1314
else:
14-
15+
@skip
1516
class TestPlotlyDisplay(unittest.TestCase):
1617

1718
def setUp(self):

0 commit comments

Comments
 (0)