mirror of
https://github.com/davidhalter/parso.git
synced 2026-01-02 09:33:43 +08:00
26 lines
396 B
YAML
26 lines
396 B
YAML
dist: xenial
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
- 3.7
|
|
- 3.8.2
|
|
- pypy2.7-6.0
|
|
- pypy3.5-6.0
|
|
matrix:
|
|
include:
|
|
- python: 3.5
|
|
env: TOXENV=py35-coverage
|
|
install:
|
|
- pip install --quiet tox-travis
|
|
script:
|
|
- tox
|
|
after_script:
|
|
- |
|
|
if [ "${TOXENV%-coverage}" == "$TOXENV" ]; then
|
|
pip install --quiet coveralls;
|
|
coveralls;
|
|
fi
|