graphene/.travis.yml
2015-10-08 09:23:55 -07:00

18 lines
276 B
YAML

language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
install:
- pip install pytest pytest-cov coveralls flake8 six blinker pytest-django
- pip install -e .[django]
- python setup.py develop
script:
- py.test --cov=graphene
# - flake8
after_success:
- coveralls