From 5693cf8f8a2192aded90119ef171e578a43bc236 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 23 Mar 2023 09:59:05 +0100 Subject: [PATCH] Re-ordering pre-commits hooks to run those who change the code first --- .pre-commit-config.yaml | 42 ++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3ee6363..dabc6c2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,27 +1,6 @@ # Pre-commit hooks to run tests and ensure code is cleaned. # See https://pre-commit.com for more information repos: -- repo: local - hooks: - - id: pytest - name: pytest - entry: python3 -m pytest tests - language: system - types: [python] - pass_filenames: false -- repo: local - hooks: - - id: pylint - name: pylint - entry: pylint --extension-pkg-whitelist=cx_Oracle - language: system - types: [python] - require_serial: true -- repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 - hooks: - - id: flake8 - args: ['--max-line-length=100'] - repo: https://github.com/asottile/pyupgrade rev: v3.3.1 hooks: @@ -37,9 +16,30 @@ repos: hooks: - id: isort args: ['--profile', 'black', '--line-length', '100'] +- repo: https://github.com/PyCQA/flake8 + rev: 6.0.0 + hooks: + - id: flake8 + args: ['--max-line-length=100'] +- repo: local + hooks: + - id: pylint + name: pylint + entry: pylint --extension-pkg-whitelist=cx_Oracle + language: system + types: [python] + require_serial: true - repo: https://github.com/Lucas-C/pre-commit-hooks-bandit rev: v1.0.5 hooks: - id: python-bandit-vulnerability-check name: bandit args: [--skip, "B101", --recursive, mylib] +- repo: local + hooks: + - id: pytest + name: pytest + entry: python3 -m pytest tests + language: system + types: [python] + pass_filenames: false