graphene/.travis.yml

19 lines
343 B
YAML
Raw Normal View History

2015-09-24 12:11:50 +03:00
language: python
sudo: false
python:
- 2.7
2015-10-06 08:59:23 +03:00
- 3.3
- 3.4
- 3.5
- pypy
2015-10-28 11:30:39 +03:00
cache: pip
2015-09-24 12:11:50 +03:00
install:
2015-10-28 11:30:39 +03:00
- 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]
2015-09-24 12:11:50 +03:00
- python setup.py develop
script:
- py.test --cov=graphene
- flake8
2015-09-24 12:11:50 +03:00
after_success:
- coveralls