-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pre-commit-config.yaml
64 lines (57 loc) · 1.53 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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 inference_logic tests
types: [python]
- id: flake8
name: flake8
stages: [commit]
language: system
entry: pipenv run flake8 inference_logic tests
types: [python]
exclude: setup.py
- id: pytest
name: pytest
stages: [commit]
language: system
entry: pipenv run pytest --cov=inference_logic --cov-fail-under=100 --cov-report=term-missing
types: [python]
pass_filenames: false
- id: doctest
name: doctest
stages: [commit]
language: system
entry: pipenv run pytest --doctest-modules inference_logic/
types: [python]
pass_filenames: false
- id: mypy
name: mypy
stages: [commit]
language: system
entry: pipenv run mypy inference_logic tests
types: [python]
pass_filenames: false
- id: sphinx
name: sphinx
stages: [commit]
language: system
entry: pipenv run make html -C docs
types: [python]
pass_filenames: false
- id: safety
name: safety
stages: [push]
language: system
entry: pipenv run safety check
types: [python]
pass_filenames: false