We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_stream.py
1 parent 0470c12 commit 8d1287cCopy full SHA for 8d1287c
plotly/tests/test_core/test_stream/test_stream.py
@@ -5,13 +5,13 @@
5
from __future__ import absolute_import
6
7
import time
8
-from unittest import TestCase
9
10
from nose.plugins.attrib import attr
11
12
import plotly.plotly as py
13
from plotly.graph_objs import (Layout, Scatter, Stream)
14
from plotly import exceptions
+from plotly.tests.utils import PlotlyTestCase
15
16
un = 'PythonAPI'
17
ak = 'ubpiol2cve'
@@ -22,9 +22,10 @@
22
'plotly_ssl_verification': False}
23
24
25
-class TestStreaming(TestCase):
+class TestStreaming(PlotlyTestCase):
26
27
def setUp(self):
28
+ super(TestStreaming, self).setUp()
29
py.sign_in(un, ak, **config)
30
31
@attr('slow')
0 commit comments