1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-28 08:38:44 +02:00
httpie-cli/.travis.yml

21 lines
332 B
YAML
Raw Normal View History

2014-05-05 22:17:23 +03:00
# https://travis-ci.org/jakubroztocil/httpie
sudo: false
2014-05-14 15:00:26 +03:00
os:
- linux
- osx
env:
global:
- NEWEST_PYTHON=3.4
2012-03-04 13:29:55 +03:00
language: python
python:
- 2.6
- 2.7
2012-06-13 17:36:51 +03:00
- pypy
2014-04-25 10:47:35 +03:00
- 3.3
2014-05-12 06:09:47 +03:00
- 3.4
2014-08-15 10:03:27 +03:00
- pypy3
2014-04-28 02:05:03 +03:00
script:
- make
2014-04-28 02:05:03 +03:00
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then pip install python-coveralls && coveralls; fi