Skip to content

Commit

Permalink
Force max-columns in pd repr
Browse files Browse the repository at this point in the history
  • Loading branch information
ebolyen committed Sep 20, 2018
1 parent ed0202a commit d87b230
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions skbio/util/_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ def test(self, verbose=False):
except ImportError:
numpy = None

try:
import pandas
pandas.options.display.max_columns = None
except ImportError:
pandas = None

# NOTE: it doesn't seem to matter what the first element of the argv
# list is, there just needs to be something there.
# changes to argv made here should also be made in setup.cfg
Expand Down

0 comments on commit d87b230

Please sign in to comment.