graphene-django/Makefile
2019-06-10 10:53:27 -07:00

12 lines
201 B
Makefile

dev-setup:
pip install -e ".[dev]"
tests:
py.test graphene_django --cov=graphene_django -vv
format:
black --exclude "/migrations/" graphene_django examples
lint:
flake8 graphene_django examples