httpie-cli/.travis.yml
Jakub Roztočil 8eb460a6f3 Disable OSX travis builds for now
OSX/Python support isn't probably not ready on Travis' side yet. 

https://travis-ci.org/jkbrzt/httpie/jobs/78219565#L27

// cc @msabramo — any idea?
2015-09-11 16:24:42 +02:00

21 lines
327 B
YAML

# https://travis-ci.org/jkbrzt/httpie
sudo: false
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