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
e.g. pandas/computation/tests/test_eval.py:TestTypeCasting
nosetests pandas/computation/tests/test_eval.py:TestTypeCasting -vs -x --with-id
#431 test_binop_typecasting (pandas.computation.tests.test_eval.TestTypeCasting) ... ok
The obvious difference is that TestTypeCasting inherits from tm.TestCase. I thought nose was supposed to run these still, but apparently not.
EDIT: OK, nose doesn't support those:
Test classes that do not descend from unittest.TestCase may also include generator methods and class-level fixtures
This came up as part of verifying that #13856 isn't dropping any tests.
The text was updated successfully, but these errors were encountered:
The good news is that the tests seem to pass :) I'd love to hear suggestions for how to search for other cases like this: Test classes inheriting from TestCase that have yield fixtures.
e.g. pandas/computation/tests/test_eval.py:TestTypeCasting
nosetests pandas/computation/tests/test_eval.py:TestTypeCasting -vs -x --with-id #431 test_binop_typecasting (pandas.computation.tests.test_eval.TestTypeCasting) ... ok
The obvious difference is that
TestTypeCasting
inherits fromtm.TestCase
. I thought nose was supposed to run these still, but apparently not.EDIT: OK, nose doesn't support those:
This came up as part of verifying that #13856 isn't dropping any tests.
The text was updated successfully, but these errors were encountered: