travis: test without trezorlib

This commit is contained in:
Roman Zeyde
2015-08-24 14:53:29 +03:00
parent 8547d00b33
commit dd6fded82d

17
.travis.yml Normal file
View File

@@ -0,0 +1,17 @@
sudo: false
language: python
python:
- "2.7"
install:
- pip install ecdsa # 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