mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-10 19:57:15 +03:00
4517e32224
* 🔧 Add pre-commit config Similar to graphene and graphene-sqlalchemy * ⬆ Bump black * 👷 Lint on CI * ⬆ Bump flake8-black * 🔧 Keep excluding migrations * ⬆ Bump flake8 * 🔧 Remove black and flake8 from tox config * ⬆ Update pre-commit versions * Upgrade syntax to python 3.7+ * Format with pre-commit dedent docs/schema.py to allow formatting * Fix tests on python 3.7
29 lines
761 B
Makefile
29 lines
761 B
Makefile
.PHONY: help
|
|
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}'
|
|
|
|
.PHONY: dev-setup ## Install development dependencies
|
|
dev-setup:
|
|
pip install -e ".[dev]"
|
|
|
|
.PHONY: tests ## Run unit tests
|
|
tests:
|
|
py.test graphene_django --cov=graphene_django -vv
|
|
|
|
.PHONY: format ## Format code
|
|
format:
|
|
black graphene_django examples setup.py
|
|
|
|
.PHONY: lint ## Lint code
|
|
lint:
|
|
flake8 graphene_django examples
|
|
|
|
.PHONY: docs ## Generate docs
|
|
docs: dev-setup
|
|
cd docs && make install && make html
|
|
|
|
.PHONY: docs-live ## Generate docs with live reloading
|
|
docs-live: dev-setup
|
|
cd docs && make install && make livehtml
|