Files
parso/.travis.yml
2017-11-05 14:39:13 +01:00

27 lines
382 B
YAML

language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7-dev
- pypy
matrix:
allow_failures:
- env: TOXENV=cov
include:
- python: 3.5
env: TOXENV=cov
install:
- pip install --quiet tox-travis
script:
- tox
after_script:
- if [ $TOXENV == "cov" ]; then
pip install --quiet coveralls;
coveralls;
fi