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 19e4b84 commit 6d84daeCopy full SHA for 6d84dae
Makefile
@@ -1,8 +1,6 @@
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,W503 --diff --statistics --count
5
- pycodestyle --ignore=E501,W503 --statistics analytics > pycodestyle.out || true
+ flake8 --max-complexity=10 --statistics analytics > flake8.out || true
6
coverage run --branch --include=analytics/\* --omit=*/test* setup.py test
7
8
release:
0 commit comments