mirror of
https://github.com/davidhalter/jedi.git
synced 2026-02-09 10:51:24 +08:00
allow_failures.env requires a string when matrix/global is not used? Also, indent is changed to fit with other entries.
21 lines
395 B
YAML
21 lines
395 B
YAML
language: python
|
|
env:
|
|
- TOXENV=py25 PIP_INSECURE=t
|
|
- TOXENV=py26
|
|
- TOXENV=py27
|
|
- TOXENV=py32
|
|
- TOXENV=py33
|
|
- TOXENV=cov
|
|
matrix:
|
|
allow_failures:
|
|
- env: TOXENV=cov
|
|
install:
|
|
- pip install --quiet --use-mirrors tox
|
|
script:
|
|
- tox
|
|
after_script:
|
|
- if [ $TOXENV == "cov" ]; then
|
|
pip install --quiet --use-mirrors coveralls
|
|
coveralls;
|
|
fi
|