httpie-cli/.travis.yml
Marc Abramowitz 55fa975ae5 .travis.yml: sudo false for Docker containers
Enables new Docker container infrastructure.
2015-02-10 07:41:38 -08:00

21 lines
332 B
YAML

# https://travis-ci.org/jakubroztocil/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