-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
37 lines (35 loc) · 1.19 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
37 lines (35 loc) · 1.19 KB
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
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
hooks:
- id: ruff
args: [--fix, --select, "E,F,I", --ignore, "E501,E402"]
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-json
- repo: local
hooks:
- id: route-manifest-check
name: route manifest freshness
entry: python -m opencut.tools.dump_route_manifest --check
language: system
pass_filenames: false
files: ^opencut/(routes/|server\.py|__init__\.py)
- id: feature-readiness-check
name: feature readiness freshness
entry: python -m opencut.tools.dump_feature_readiness --check
language: system
pass_filenames: false
files: ^opencut/(routes/|checks\.py|registry\.py|model_cards\.py)
- id: pytest-smoke
name: pytest smoke tests
entry: python -m pytest tests/test_route_smoke.py tests/test_core_modules.py -x -q --tb=short --no-header
language: system
pass_filenames: false
always_run: true
stages: [pre-push]