diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b4d1d1ca583eb211cc4b0a5ab9b2243c715bb45e..49337196592599a11942ecd8fc24a4230c5a196d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,20 +2,20 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/timothycrosley/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort args: [--settings-path, "pyproject.toml"] - repo: https://github.com/psf/black - rev: 22.3.0 + rev: 23.1.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 - rev: 3.9.2 + rev: 6.0.0 hooks: - id: flake8 - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.2.0 + rev: v4.4.0 hooks: - id: check-ast - id: check-case-conflict diff --git a/tests/test_pipelines.py b/tests/test_pipelines.py index 39c8efdabc64a5da1cd3ea7556be8925c505322c..7df7aa4659277e3d28cf1890e4d898710ab4e711 100644 --- a/tests/test_pipelines.py +++ b/tests/test_pipelines.py @@ -59,7 +59,6 @@ class DummyPadDatabase(Database): def dummy_pipeline(): - classifier = mario.wrap( ["sample"], LinearDiscriminantAnalysis(), @@ -81,7 +80,6 @@ pipeline = dummy_pipeline() def test_run_pipeline(): - for options in [ ["--no-dask", "--memory"], ["--no-dask"],