From df0927b41ad41454e5193f5740de82859a08f0a6 Mon Sep 17 00:00:00 2001 From: Yannick DAYER <yannick.dayer@idiap.ch> Date: Tue, 14 Feb 2023 09:13:17 +0100 Subject: [PATCH] [qa] Autoupdate pre-commit and apply on all files. --- .pre-commit-config.yaml | 8 ++++---- tests/test_pipelines.py | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b4d1d1c..4933719 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 39c8efd..7df7aa4 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"], -- GitLab