httpie-cli/.travis.yml

15 lines
323 B
YAML
Raw Normal View History

2014-04-28 10:01:39 +02:00
# https://travis-ci.org/jkbr/httpie
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
2012-03-04 11:29:55 +01:00
install:
2014-04-28 01:05:03 +02:00
- pip install pytest pytest-cov python-coveralls --use-mirrors
2012-06-24 03:43:08 +02:00
- pip install . --use-mirrors
2014-04-28 01:05:03 +02:00
script:
- py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
after_success:
- coveralls