-
Notifications
You must be signed in to change notification settings - Fork 17
/
.pre-commit-config.yaml
45 lines (40 loc) · 1.07 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
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.222'
hooks:
- id: ruff
args: ["--force-exclude"]
- repo: local
hooks:
- id: black
name: black
stages: [commit]
language: system
entry: poetry run black --config pyproject.toml
types: [python]
- id: isort
name: isort
stages: [commit]
language: system
entry: poetry run isort --settings-path pyproject.toml
types: [python]
# - id: mypy
# name: mypy
# stages: [commit]
# language: system
# entry: poetry run mypy --config-file pyproject.toml
# types: [python]
- id: pytest
name: pytest
stages: [commit]
language: system
entry: poetry run pytest
types: [python]
pass_filenames: false
- id: pytest-cov
name: pytest
stages: [push]
language: system
entry: poetry run pytest --cov ruts --cov-fail-under 90
types: [python]
pass_filenames: false