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 _cmake/clang_format.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
clear
echo "--ruff--"
ruff .
ruff check .
echo "--cython-lint--"
cython-lint .
echo "--clang-format--"
Expand Down
6 changes: 3 additions & 3 deletions _unittests/ut_plotting/test_plot_gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import unittest
import warnings
import http.client
import urllib.error
import numpy
from mlinsights.ext_test_case import ExtTestCase, unzip_files
from mlinsights.plotting import plot_gallery_images
Expand Down Expand Up @@ -62,9 +63,8 @@ def test_plot_gallery_url(self):

try:
fig, ax = plot_gallery_images(files, return_figure=True)
except http.client.RemoteDisconnected as e:
warnings.warn(f"Unable to fetch image {e}'")
return
except (http.client.RemoteDisconnected, urllib.error.HTTPError) as e:
raise unittest.SkipTest(f"Unable to fetch image {e} (url={root!r})")
self.assertNotEmpty(fig)
self.assertNotEmpty(ax)

Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- script: pip install -r requirements-dev.txt
displayName: 'Install Requirements dev'
- script: |
ruff .
ruff check .
displayName: 'Ruff'
- script: |
black --diff .
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- script: pip install -r requirements-dev.txt
displayName: 'Install Requirements dev'
- script: |
ruff .
ruff check .
displayName: 'Ruff'
- script: |
black --diff .
Expand Down
6 changes: 5 additions & 1 deletion mlinsights/mlbatch/pipeline_cache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from sklearn.base import clone
from sklearn.pipeline import Pipeline, _fit_transform_one
from sklearn.utils import _print_elapsed_time

try:
from sklearn.utils._user_interface import _print_elapsed_time
except ImportError:
from sklearn.utils import _print_elapsed_time
from sklearn.utils.validation import check_memory
from .cache_model import MLCache

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ disable_error_code = ["override", "index"]
exclude = [".eggs", ".git", "build", "dist"]
line-length = 88

[tool.ruff.mccabe]
[tool.ruff.lint.mccabe]
max-complexity = 10

[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"_unittests/ut_plotting/test_dot.py" = ["E501"]
"mlinsights/mlbatch/__init__.py" = ["F401"]
"mlinsights/metrics/__init__.py" = ["F401"]
Expand Down
Loading