-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
55 lines (50 loc) · 1.49 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
55 lines (50 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.12.5
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
# Temporarily disable mypy due to module path conflicts
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v1.17.0
# hooks:
# - id: mypy
# additional_dependencies: [
# types-requests,
# types-PyYAML,
# fastapi,
# sqlalchemy,
# pytest,
# pydantic
# ]
# args: [--ignore-missing-imports, --no-strict-optional, --explicit-package-bases]
# exclude: ^src/cc_orchestrator/utils/logging\.py$
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
hooks:
- id: bandit
args: [--recursive, --format, json]
files: ^src/
- repo: local
hooks:
- id: pytest
name: pytest
entry: env
language: system
pass_filenames: false
always_run: true
args: [JWT_SECRET_KEY=test-secret-key-for-ci-cd-only-not-production, ENABLE_DEMO_USERS=true, TESTING=true, pytest, tests/, --cov=src, --cov-fail-under=74]