Skip to content

Commit 5819585

Browse files
author
Marc Garcia
committed
Revert "Adding debug info in the CI for failing test"
This reverts commit 34d189f.
1 parent 34d189f commit 5819585

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pandas/tests/plotting/test_misc.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -262,13 +262,6 @@ def test_parallel_coordinates_with_sorted_labels(self):
262262
prev_next_tupels = zip([i for i in ordered_color_label_tuples[0:-1]],
263263
[i for i in ordered_color_label_tuples[1:]])
264264
for prev, nxt in prev_next_tupels:
265-
# FIXME: Showing in the CI what's in ordered_color_label_tuples
266-
if ((isinstance(prev[1], list) and isinstance(nxt[1], str))
267-
or (isinstance(prev[0], list)
268-
and isinstance(nxt[0], str))):
269-
raise ValueError('ordered_color_label_tuples: {}'.format(
270-
ordered_color_label_tuples))
271-
272265
# labels and colors are ordered strictly increasing
273266
assert prev[1] < nxt[1] and prev[0] < nxt[0]
274267

0 commit comments

Comments
 (0)