diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 0c83e47754..fb62de91e3 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - tool: ['isort', 'black', 'pyupgrade', 'flake8', 'bandit', 'gitlint', 'mypy'] + tool: ['isort', 'black', 'pyupgrade', 'flake8', 'bandit', 'gitlint', 'mypy','interrogate'] steps: - name: Harden Runner uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6463574409..930e6170d7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -77,4 +77,5 @@ repos: - id: interrogate verbose: True exclude: ^(locales|presentation) - args: ["-vv", "-i", "-I", "-M", "-C", "-n", "-p", "-f", "60.0"] \ No newline at end of file + args: ["-vv", "-i", "-I", "-M", "-C", "-n", "-p", "-f", "60.0", "-e", "fuzz/", "-e", "test/", "-e", "cve_bin_tool/checkers/", "-e", "build/"] + pass_filenames: false \ No newline at end of file