mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-16 09:27:12 +08:00
27 lines
389 B
YAML
27 lines
389 B
YAML
language: python
|
|
sudo: false
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
- pypy
|
|
matrix:
|
|
allow_failures:
|
|
- python: pypy
|
|
- 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
|