graphene/.travis.yml
2015-10-28 01:34:51 -07:00

19 lines
345 B
YAML

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