Skip to content

Commit

Permalink
Fix: add error to be ignored during test (#1382)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Aug 18, 2022
1 parent 11dc191 commit 73d5da5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_pipeline/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,9 @@ def _test_configurations(
continue
elif 'Internal work array size computation failed' in e.args[0]:
continue
# Assumed to be caused by knn with preprocessor fast_ica with whiten
elif 'Input contains NaN, infinity or a value too large' in e.args[0]:
continue
else:
e.args += (f"config={config}",)
raise e
Expand Down

0 comments on commit 73d5da5

Please sign in to comment.