[ADD] pyttest.ini file + test for cli_build [ADD] call to gitaggregate [REF] harmonize release & version words ; remove python version ; add... [REM] remove towncrier for the time being [REF\] enable both test and improve : each test should have it's own output folder to reduce gitaggagregate duration
37 lines
965 B
YAML
37 lines
965 B
YAML
---
|
|
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: debug-statements
|
|
- id: mixed-line-ending
|
|
- id: name-tests-test
|
|
- id: check-yaml
|
|
- id: check-json
|
|
- id: check-toml
|
|
- id: check-added-large-files
|
|
args: ['--maxkb=2048']
|
|
- id: check-docstring-first
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- repo: https://github.com/pre-commit/mirrors-isort
|
|
rev: v5.7.0
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: "3.9.2"
|
|
hooks:
|
|
- id: flake8
|
|
# - repo: https://gitlab.com/smop/pre-commit-hooks
|
|
# rev: v1.0.0
|
|
# hooks:
|
|
# - id: check-gitlab-ci
|