Skip to content

Commit 32bfe98

Browse files
committedJan 26, 2015
Merge pull request #184 from plotly/remove-image-tests
skip image tests (we’re removing these methods for now)
2 parents cce83c6 + 46a03f2 commit 32bfe98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎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)
Please sign in to comment.