Skip to content

Commit

Permalink
TST: skip test raising unsortable warning on 32-bit windows, other pl…
Browse files Browse the repository at this point in the history
…atforms. pandas-dev#1546
  • Loading branch information
wesm committed Jun 28, 2012
1 parent 768d90e commit cd2002a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pandas/tests/test_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def test_getitem(self):
tm.assert_almost_equal(subf.labels, [2, 2, 2])

def test_constructor_unsortable(self):
raise nose.SkipTest

arr = np.array([1, 2, 3, datetime.now()], dtype='O')

# it works!
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ coverage erase
# nosetests pandas/tests/test_index.py --with-coverage --cover-package=pandas.core --pdb-failure --pdb
#nosetests -w pandas --with-coverage --cover-package=pandas --pdb-failure --pdb #--cover-inclusive
#nosetests -A "not slow" -w pandas/tseries --with-coverage --cover-package=pandas.tseries $* #--cover-inclusive
nosetests -w pandas -v --with-coverage --cover-package=pandas $*
nosetests -w pandas --with-coverage --cover-package=pandas $*
# nosetests -w pandas/io --with-coverage --cover-package=pandas.io --pdb-failure --pdb
# nosetests -w pandas/core --with-coverage --cover-package=pandas.core --pdb-failure --pdb
# nosetests -w pandas/stats --with-coverage --cover-package=pandas.stats
Expand Down

0 comments on commit cd2002a

Please sign in to comment.