Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Dec 12, 2016
1 parent 741082a commit 4c6f498
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Expand Up @@ -27,7 +27,10 @@ uninstall:
reinstall: uninstall install

remember:
@echo "Don't forget to 'make install_requirements'"
@echo
@echo "Hello from the Makefile..."
@echo "Don't forget to run: 'make install_requirements'"
@echo

clean:
@rm -rf *.egg* build dist *.py[oc] */*.py[co] cover doctest_pypi.cfg \
Expand All @@ -43,8 +46,12 @@ nosetests: remember
pep8: remember
flake8 --max-complexity 12 --exit-zero kiss/*.py tests/*.py

flake8: pep8

lint: remember
pylint --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" \
-r n kiss/*.py tests/*.py || exit 0

pylint: lint

test: lint pep8 nosetests

0 comments on commit 4c6f498

Please sign in to comment.