Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
echo "::set-output name=BEFORE::$(git status --porcelain -b)"

- name: Tests
timeout-minutes: 60
timeout-minutes: 120
run: |
export OPENBLAS_NUM_THREADS=1
export OMP_NUM_THREADS=1
Expand Down
3 changes: 3 additions & 0 deletions test/test_pipeline/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,9 @@ def _test_configurations(
# 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
elif "zero-size array to reduction operation maximum which has no " \
"identity" in e.args[0]:
continue
else:
e.args += (f"config={config}",)
raise e
Expand Down