httpie-cli/.travis.yml
Marc Abramowitz fbd44640e6 .travis.yml: Only do coveralls on newest python
Testing theory that it has to do with different python version subjobs
completing in different orders and the last one wins.
2015-02-10 07:37:03 -08:00

20 lines
320 B
YAML

# https://travis-ci.org/jakubroztocil/httpie
os:
- linux
- osx
env:
global:
- NEWEST_PYTHON=3.4
language: python
python:
- 2.6
- 2.7
- pypy
- 3.3
- 3.4
- pypy3
script:
- make
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then pip install python-coveralls && coveralls; fi