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_file.py
1 parent c7d36f7 commit c586863Copy full SHA for c586863
plotly/tests/test_core/test_file/test_file.py
@@ -7,19 +7,19 @@
7
"""
8
import random
9
import string
10
-import requests
11
-from unittest import TestCase
12
13
from nose.plugins.attrib import attr
14
15
import plotly.plotly as py
16
from plotly.exceptions import PlotlyRequestError
+from plotly.tests.utils import PlotlyTestCase
17
18
19
@attr('slow')
20
-class FolderAPITestCase(TestCase):
+class FolderAPITestCase(PlotlyTestCase):
21
22
def setUp(self):
+ super(FolderAPITestCase, self).setUp()
23
py.sign_in('PythonTest', '9v9f20pext')
24
25
def _random_filename(self):
0 commit comments