mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-25 11:04:11 +03:00
775d2e3523
* Update travis and tox * Use xenial distribution * Don't install coveralls twice * Add black and flake8 tox commands * Remove Python 3.5 test for Django master * Fix indent * Ignore migrations * Remove black for now * Run black formatting (#668) * Run black format * Update makefile * Add black to travis build
12 lines
201 B
Makefile
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
|