Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
.PHONY: test pep8 clean install build publish tree env
.PHONY: test pep8 types clean install build publish tree env

test: pep8
py.test --cov=flask_googlemaps -l --tb=short --maxfail=1 tests/

pep8:
@flake8 flask_googlemaps --ignore=F403

types:
@mypy --py2 flask_googlemaps

clean:
@find ./ -name '*.pyc' -exec rm -f {} \;
@find ./ -name 'Thumbs.db' -exec rm -f {} \;
Expand Down
Loading