httpie-cli/.travis.yml

21 lines
327 B
YAML
Raw Normal View History

2015-07-03 18:55:45 +02:00
# https://travis-ci.org/jkbrzt/httpie
sudo: false
2014-05-14 14:00:26 +02:00
os:
- linux
# - osx
env:
global:
- NEWEST_PYTHON=3.4
2012-03-04 11:29:55 +01:00
language: python
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
2014-04-28 01:05:03 +02:00
script:
- make
2014-04-28 01:05:03 +02:00
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then pip install python-coveralls && coveralls; fi