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.
1 parent fce1e3e commit e79aaa7Copy full SHA for e79aaa7
pandas/util/testing.py
@@ -50,7 +50,6 @@
50
Index, MultiIndex,
51
Series, DataFrame, Panel, Panel4D)
52
53
-from pandas.util.decorators import deprecate
54
from pandas.util import libtesting
55
from pandas.io.common import urlopen
56
slow = pytest.mark.slow
@@ -83,6 +82,14 @@ def reset_testing_mode():
83
82
84
85
class TestCase(unittest.TestCase):
+ """
86
+ The test case class that we originally used when using the
87
+ nosetests framework. Under the new pytest framework, we are
88
+ moving away from this class.
89
+
90
+ Do not create new test classes derived from this one. Rather,
91
+ they should inherit from object directly.
92
93
94
@classmethod
95
def setUpClass(cls):
0 commit comments