Skip to content
Snippets Groups Projects
Verified Commit a6676ea0 authored by Erwan Rouchet's avatar Erwan Rouchet
Browse files

Move hook to tools/pre-commit-hooks

parent d16cb01d
No related branches found
No related tags found
1 merge request!2443Move hook to tools/pre-commit-hooks
......@@ -34,13 +34,10 @@ repos:
- repo: meta
hooks:
- id: check-useless-excludes
- repo: local
- repo: https://gitlab.teklia.com/tools/pre-commit-hooks
rev: 0.1.0
hooks:
- id: long-test-files
name: Warn about long unit test files
language: script
entry: ci/long-test-files.sh
args: ['1000']
# Only run on Arkindex unit test files
files: '^arkindex\/[^\/]*\/tests\/(.*\/)?test_.*\.py'
# Always show output, even when the hook passes, since the hook only warns and doesn't fail
verbose: true
#!/bin/sh
wc -l "$@" | awk '$2 != "total" && $1 > 1000 { OFS=""; print $2, " is too long (", $1, " lines)" }'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment