mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-22 17:46:57 +03:00
15 lines
348 B
YAML
15 lines
348 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- 2.7
|
|
install:
|
|
- pip install pytest pytest-cov coveralls flake8 six blinker singledispatch django
|
|
- pip install git+https://github.com/dittos/graphqllib.git # Last version of graphqllib
|
|
- pip install graphql-relay
|
|
- python setup.py develop
|
|
script:
|
|
- py.test --cov=graphene
|
|
# - flake8
|
|
after_success:
|
|
- coveralls
|