1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Yaroslav Halchenko <debian@onerussian.com>
Subject: skip the assert for now - remove patch whenever upstream issue is closed
Origin: Debian
Bug: https://github.com/pandas-dev/pandas/issues/21746
Last-Update: 2018-07-18
--- a/pandas/tests/io/formats/test_format.py
+++ b/pandas/tests/io/formats/test_format.py
@@ -1598,7 +1598,8 @@ c 10 11 12 13 14\
# Wide
h, w = max_rows - 1, max_cols + 1
df = DataFrame({k: np.arange(1, 1 + h) for k in np.arange(w)})
- assert has_horizontally_truncated_repr(df)
+ # TEMP: https://github.com/pandas-dev/pandas/issues/21746
+ # assert has_horizontally_truncated_repr(df)
with option_context('display.large_repr', 'info',
'display.max_columns', max_cols):
assert has_info_repr(df)
|