mirror of
https://github.com/httpie/cli.git
synced 2024-11-24 08:22:22 +02:00
15 lines
323 B
YAML
15 lines
323 B
YAML
# https://travis-ci.org/jkbr/httpie
|
|
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- pypy
|
|
- 3.3
|
|
install:
|
|
- pip install pytest pytest-cov python-coveralls --use-mirrors
|
|
- pip install . --use-mirrors
|
|
script:
|
|
- py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
|
|
after_success:
|
|
- coveralls
|