File: up_skip_testrepr

package info (click to toggle)
pandas 0.23.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 167,704 kB
  • sloc: python: 230,826; ansic: 11,317; sh: 682; makefile: 133
file content (18 lines) | stat: -rw-r--r-- 826 bytes parent folder | download
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)