You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* MAINT: Convert test setup/teardown to pytest idiom
* tm.TestCase now just inherits from object
* setUpClass renamed to setup_class
* tearDownClass renamed to teardown_class
* setUp renamed to setup_method
* tearDown renamed to teardown_method
* MAINT: Remove unittest.TestCase from testing
* DOC: Update documentation for TestCase usage
tm.TestCase no longer follows the nosetest idiom,
so it is here to stay, so update the documentation
to say that we are using it still.
Closespandas-devgh-15990.
* TST: Patch Circle matplotlib failure
The tm.mplskip decorator was breaking on Circle,
so this commit removes the decorator and replaces it
with direct function calls to check for matplotlib.
* TST: Replace yield-based tests in test_query_eval
Copy file name to clipboardExpand all lines: doc/source/contributing.rst
-8
Original file line number
Diff line number
Diff line change
@@ -632,14 +632,6 @@ framework that will facilitate testing and developing. Thus, instead of writing
632
632
deftest_really_cool_feature():
633
633
....
634
634
635
-
Sometimes, it does make sense to bundle test functions together into a single class, either because the test file is testing multiple functions from a single module, and
636
-
using test classes allows for better organization. However, instead of inheriting from ``tm.TestCase``, we should just inherit from ``object``:
0 commit comments