2015-09-24 12:11:50 +03:00
|
|
|
language: python
|
|
|
|
sudo: false
|
|
|
|
python:
|
|
|
|
- 2.7
|
|
|
|
install:
|
2015-09-30 09:40:40 +03:00
|
|
|
- pip install pytest pytest-cov coveralls flake8 six blinker
|
2015-10-01 11:54:52 +03:00
|
|
|
# - pip install -e .[django] # TODO: Commented until graphqllib is in pypi
|
|
|
|
- pip install Django>=1.8.0 pytest-django singledispatch>=3.4.0.3
|
2015-09-24 12:11:50 +03:00
|
|
|
- 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
|