X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=eb080e72dc6f67ccbf4a13422142c368f9d0012f;hb=ba6d3d6712de12c92bc5d28fc3426a61467ba45a;hp=ca681470d68f08f9f9ef2c62a27c7b503b4c69d7;hpb=6c7297a16a2d46d429bf598ec8803db6d5d8942d;p=dunshire.git diff --git a/makefile b/makefile index ca68147..eb080e7 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,14 @@ +.PHONY: check +check: + python test/suite.py + +.PHONY: lint +lint: + PYTHONPATH="src/dunshire" pylint \ + --reports=n \ + --good-names='b,c,h,A,C,G,_K,_L' \ + src/dunshire/*.py + .PHONY: clean clean: - rm -r __pycache__ + rm -rf src/dunshire/__pycache__