File tree 5 files changed +4
-3
lines changed
5 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ use cases and writing corresponding tests.
552
552
Adding tests is one of the most common requests after code is pushed to *pandas *. Therefore,
553
553
it is worth getting in the habit of writing tests ahead of time so this is never an issue.
554
554
555
- Like many packages, *pandas * uses `pytest `
555
+ Like many packages, *pandas * uses `pytest
556
556
<http://doc.pytest.org/en/latest/> `_ and the convenient
557
557
extensions in `numpy.testing
558
558
<http://docs.scipy.org/doc/numpy/reference/routines.testing.html> `_.
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Highlights include:
11
11
12
12
- Building pandas for development now requires ``cython >= 0.23`` (:issue:`14831`)
13
13
- The ``.ix`` indexer has been deprecated, see :ref:`here <whatsnew_0200.api_breaking.deprecate_ix>`
14
+ - Switched the test framework to pytest (:issue:`13097`)
14
15
15
16
Check the :ref:`API Changes <whatsnew_0200.api_breaking>` and :ref:`deprecations <whatsnew_0200.deprecations>` before updating.
16
17
Original file line number Diff line number Diff line change 53
53
from pandas .tools .util import to_numeric
54
54
from pandas .core .reshape import melt
55
55
from pandas .util .print_versions import show_versions
56
- from pandas .api . test import test
56
+ from pandas .util . _tester import test
57
57
58
58
# use the closest tagged version if possible
59
59
from ._version import get_versions
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def test_api(self):
133
133
134
134
class TestApi (Base , tm .TestCase ):
135
135
136
- allowed = ['tests' , 'types' , 'test' ]
136
+ allowed = ['tests' , 'types' ]
137
137
138
138
def test_api (self ):
139
139
File renamed without changes.
You can’t perform that action at this time.
0 commit comments