graphene/.travis.yml

18 lines
276 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-09-24 12:11:50 +03:00
install:
2015-10-08 19:23:55 +03:00
- pip install pytest pytest-cov coveralls flake8 six blinker pytest-django
2015-10-07 08:31:00 +03:00
- pip install -e .[django]
2015-09-24 12:11:50 +03:00
- python setup.py develop
script:
- py.test --cov=graphene
# - flake8
after_success:
- coveralls