Skip to content

Commit 6d84dae

Browse files
Replace pycodestyle with flake8
1 parent 19e4b84 commit 6d84dae

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
test:
22
pylint --rcfile=.pylintrc --reports=y --exit-zero analytics | tee pylint.out
3-
# fail on pycodestyle errors on the code change
4-
git diff origin/master..HEAD analytics | pycodestyle --ignore=E501,W503 --diff --statistics --count
5-
pycodestyle --ignore=E501,W503 --statistics analytics > pycodestyle.out || true
3+
flake8 --max-complexity=10 --statistics analytics > flake8.out || true
64
coverage run --branch --include=analytics/\* --omit=*/test* setup.py test
75

86
release:

0 commit comments

Comments
 (0)