Skip to content

Commit a34c427

Browse files
Update Makefile for compatibility with Flake8
1 parent 93db1db commit a34c427

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

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

88
release:

0 commit comments

Comments
 (0)