.PHONY: help help: @echo "Please use \`make ' where is one of" @grep -E '^\.PHONY: [a-zA-Z_-]+ .*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = "(: |##)"}; {printf "\033[36m%-30s\033[0m %s\n", $$2, $$3}' .PHONY: install-dev ## Install development dependencies install-dev: pip install -e ".[dev]" test: py.test graphene examples tests_asyncio .PHONY: docs ## Generate docs docs: install-dev cd docs && make install && make html .PHONY: docs-live ## Generate docs with live reloading docs-live: install-dev cd docs && make install && make livehtml .PHONY: format format: black graphene examples setup.py tests_asyncio .PHONY: lint lint: flake8 graphene examples setup.py tests_asyncio