File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ jobs:
23
23
24
24
- name : Check code format with Black
25
25
run : |
26
- black --check open_dubbing/ tests/
26
+ black --check open_dubbing/ tests/ --exclude pydub*
27
27
28
28
- name : Check code style with Flake8
29
29
if : ${{ always() }}
30
30
run : |
31
- flake8 open_dubbing/ tests/
31
+ flake8 open_dubbing/ tests/ --exclude pydub*
32
32
33
- - name : Check code with isort
34
- if : ${{ always() }}
35
- run : |
36
- isort --check-only open_dubbing/ tests/
33
+ # - name: Check code with isort
34
+ # if: ${{ always() }}
35
+ # run: |
36
+ # isort --check-only open_dubbing/ tests/
37
37
38
38
run-tests :
39
39
environment : CI/CD
Original file line number Diff line number Diff line change 3
3
PATHS = open_dubbing/ tests/ e2e-tests/
4
4
5
5
dev :
6
- python -m black $(PATHS )
7
- python -m flake8 $(PATHS )
8
- python -m isort $(PATHS )
6
+ python -m black $(PATHS ) --exclude pydub *
7
+ python -m flake8 $(PATHS ) --exclude pydub *
8
+ # python -m isort $(PATHS)
9
9
10
10
run-tests :
11
11
python -m pytest tests/
You can’t perform that action at this time.
0 commit comments