httpie-cli/.travis.yml

40 lines
606 B
YAML
Raw Normal View History

2015-07-03 18:55:45 +02:00
# https://travis-ci.org/jkbrzt/httpie
sudo: false
2016-02-29 08:35:56 +01:00
language: python
2014-05-14 14:00:26 +02:00
os:
- linux
2016-02-29 08:35:56 +01:00
env:
global:
2016-02-29 08:35:56 +01:00
- NEWEST_PYTHON=3.4
2012-03-04 11:29:55 +01:00
python:
- 2.6
- 2.7
2012-06-13 16:36:51 +02:00
- pypy
2014-04-25 09:47:35 +02:00
- 3.3
2014-05-12 05:09:47 +02:00
- 3.4
2014-08-15 09:03:27 +02:00
- pypy3
2016-02-29 08:31:31 +01:00
matrix:
include:
# https://docs.travis-ci.com/user/multi-os/#Python-example-(unsupported-languages)
- os: osx
language: generic
2014-04-28 01:05:03 +02:00
script:
- make
2016-02-29 08:35:56 +01:00
2016-02-29 09:35:09 +01:00
install:
- |
2016-02-29 09:36:25 +01:00
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
2016-02-29 09:35:09 +01:00
brew install python
fi
2014-04-28 01:05:03 +02:00
after_success:
2016-02-29 08:38:59 +01:00
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON && $TRAVIS_OS_NAME == 'linux']]; then
pip install python-coveralls && coveralls
fi