-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
44 lines (40 loc) · 991 Bytes
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# See https://pre-commit.com/ for usage and config
# Run hooks only on pyhack, others staged files will be commited without being checked
#exclude: '^(?!launch.py)'
repos:
- repo: local
hooks:
- id: isort
name: isort
stages: [commit]
language: system
entry: pipenv run isort
types: [python]
- id: black
name: black
stages: [commit]
language: system
entry: pipenv run black
types: [python]
- id: flake8
name: flake8
stages: [commit]
language: system
entry: pipenv run flake8
types: [python]
exclude: setup.py
- id: pytest
name: pytest
stages: [commit]
language: system
entry: pipenv run pytest -v
types: [python]
pass_filenames: false
# pass_filenames est nécessaire à cause de launch.py qui importe pyhack
- id: pytest-cov
name: pytest
stages: [push]
language: system
entry: pipenv run pytest -v --cov # --cov-fail-under=0
types: [python]
pass_filenames: false