We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93db1db commit a34c427Copy full SHA for a34c427
Makefile
@@ -1,8 +1,8 @@
1
test:
2
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 --diff --statistics --count
5
- pycodestyle --ignore=E501 --statistics analytics > pycodestyle.out || true
+ git diff origin/master..HEAD analytics | pycodestyle --ignore=E501,W503 --diff --statistics --count
+ pycodestyle --ignore=E501,W503 --statistics analytics > pycodestyle.out || true
6
coverage run --branch --include=analytics/\* --omit=*/test* setup.py test
7
8
release:
0 commit comments