Skip to content

Commit 538be87

Browse files
committed
Make
1 parent b6fbd7f commit 538be87

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
2424
- name: Check code format with Black
2525
run: |
26-
black --check open_dubbing/ tests/
26+
black --check open_dubbing/ tests/ --exclude pydub*
2727
2828
- name: Check code style with Flake8
2929
if: ${{ always() }}
3030
run: |
31-
flake8 open_dubbing/ tests/
31+
flake8 open_dubbing/ tests/ --exclude pydub*
3232
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/
3737

3838
run-tests:
3939
environment: CI/CD

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
PATHS = open_dubbing/ tests/ e2e-tests/
44

55
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)
99

1010
run-tests:
1111
python -m pytest tests/

0 commit comments

Comments
 (0)