Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.

Commit c792037

Browse files
committed
Do not stop build if flake8 errors exist
1 parent dcaf07a commit c792037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ release:
5050

5151
test: all
5252
$(FLAKE8) ./src --count --select=E9,F63,F7,F82 --show-source --statistics
53-
$(FLAKE8) ./src --count --max-complexity=20 --ignore=E402 --max-line-length=120 --statistics
53+
$(FLAKE8) ./src --count --exit-zero --max-complexity=20 --ignore=E402 --max-line-length=120 --statistics
5454
PYTHONPATH=./src $(PYTHON) -m unittest discover -s ./test
5555

5656
build_devenv:

0 commit comments

Comments
 (0)