graphene/.travis.yml
2015-10-06 22:31:00 -07:00

18 lines
262 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
- pip install -e .[django]
- python setup.py develop
script:
- py.test --cov=graphene
# - flake8
after_success:
- coveralls