mirror of
https://github.com/romanz/amodem.git
synced 2026-02-07 01:18:02 +08:00
21 lines
291 B
YAML
21 lines
291 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
|
|
- cd tests
|
|
- coverage run --source=amodem -m py.test
|
|
|
|
after_success:
|
|
- coveralls
|