Skip to content

Commit d9b6999

Browse files
committed
Fix: add error to be ignored during test
1 parent a9fbd5c commit d9b6999

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_pipeline/test_classification.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,9 @@ def _test_configurations(
533533
continue
534534
elif 'Internal work array size computation failed' in e.args[0]:
535535
continue
536+
# Assumed to be caused by knn with preprocessor fast_ica with whiten
537+
elif 'Input contains NaN, infinity or a value too large' in e.args[0]:
538+
continue
536539
else:
537540
e.args += (f"config={config}",)
538541
raise e

0 commit comments

Comments
 (0)