graphene-django/Makefile
Jonathan Kim 4275aba6ac
Run black formatting (#668)
* Run black format

* Update makefile

* Add black to travis build
2019-06-10 18:58:33 -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