| help: | |
| @echo "Please use \`make <target>' where <target> 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}' | |
| install-dev: | |
| pip install -e ".[dev]" | |
| test: | |
| py.test graphene examples | |
| docs: install-dev | |
| cd docs && make install && make html | |
| docs-live: install-dev | |
| cd docs && make install && make livehtml | |
| format: | |
| black graphene examples setup.py | |
| lint: | |
| flake8 graphene examples setup.py | |