Skip to content

Commit 24f226e

Browse files
committed
skip property check tests in dev build so we don't fail when new properties are added upstream
1 parent f16cb78 commit 24f226e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: plotly/tests/test_core/test_graph_objs/test_frames.py

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
from plotly.graph_objs import Bar, Frames, Frame, Layout
66

7+
from nose.plugins.attrib import attr
8+
79
import re
810

911

@@ -44,6 +46,7 @@ def test_non_string_frame(self):
4446
# with self.assertRaises(exceptions.PlotlyListEntryError):
4547
# frames.append(0)
4648

49+
@attr('nodev')
4750
def test_deeply_nested_layout_attributes(self):
4851
frames = Frame
4952
frames.layout = [Layout()]
@@ -58,6 +61,7 @@ def test_deeply_nested_layout_attributes(self):
5861
{'color', 'family', 'size'}
5962
)
6063

64+
@attr('nodev')
6165
def test_deeply_nested_data_attributes(self):
6266
frames = Frame
6367
frames.data = [Bar()]

0 commit comments

Comments
 (0)