mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
18 lines
276 B
YAML
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
|