blob: 72538a9ca35bfc860c28100d14b55950315b7784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
fail_fast: true
repos:
- repo: local
hooks:
- id: format
name: Format
stages: [commit]
language: system
entry: pipenv run format
types: [python]
- id: lint
name: Lint
stages: [commit]
language: system
entry: pipenv run lint
types: [python]
- id: test
name: Test
stages: [commit]
language: system
entry: pipenv run test
types: [python]
|