Files
amodem/.travis.yml
2015-10-27 19:57:53 +02:00

19 lines
345 B
YAML

sudo: false
language: python
python:
- "2.7"
- "3.4"
install:
- pip install ecdsa ed25519 # test without trezorlib for now
- pip install pylint coverage pep8
script:
- pep8 trezor_agent
- pylint --report=no --rcfile .pylintrc trezor_agent
- coverage run --source trezor_agent/ -m py.test -v
after_success:
- coverage report