Files
amodem/.travis.yml
Roman Zeyde 37ee53d8e4 Revert "travis: test on nightly Python"
numpy has weird problems on nightly Python build.
This reverts commit 66cecb9be4.
2015-03-26 11:00:27 +02:00

23 lines
400 B
YAML

sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install .
- pip install coveralls pep8 mock
script:
- pep8 amodem/ scripts/ tests/ amodem-cli
- echo "Hello World!" | amodem-cli send -vv -l- -o- | amodem-cli recv -vv -l- -i-
- cd tests
- coverage run --source=amodem -m py.test -vvs
after_success:
- coverage report
- coveralls