forked from OpenNyAI/Jugalbandi-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
34 lines (33 loc) · 983 Bytes
/
.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
repos:
- repo: https://github.com/psf/black
rev: 24.4.2
hooks:
- id: black
language_version: python3
- repo: local
hooks:
- id: run-tests-lib
name: Run Tests in jb-lib
entry: bash -c 'cd jb-lib && poetry run pytest'
language: system
types: [python]
- id: run-tests-channel
name: Run Tests in channel
entry: bash -c 'cd channel && poetry run pytest'
language: system
types: [python]
- id: run-tests-language
name: Run Tests in language
entry: bash -c 'cd language && poetry run pytest'
language: system
types: [python]
- id: run-tests-api
name: Run Tests in api
entry: bash -c 'cd api && poetry run pytest'
language: system
types: [python]
- id: run-tests-flow
name: Run Tests in flow
entry: bash -c 'cd flow && poetry run pytest'
language: system
types: [python]