1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00
httpie-cli/.travis.yml
Jakub Roztocil 0a002ec554 Fix travis
2016-02-29 15:38:59 +08:00

34 lines
511 B
YAML

# https://travis-ci.org/jkbrzt/httpie
sudo: false
language: python
os:
- linux
env:
global:
- NEWEST_PYTHON=3.4
python:
- 2.6
- 2.7
- pypy
- 3.3
- 3.4
- pypy3
matrix:
include:
# https://docs.travis-ci.com/user/multi-os/#Python-example-(unsupported-languages)
- os: osx
language: generic
script:
- make
after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON && $TRAVIS_OS_NAME == 'linux']]; then
pip install python-coveralls && coveralls
fi