trezor-agent/.travis.yml

19 lines
337 B
YAML
Raw Normal View History

2015-08-24 11:53:29 +00:00
sudo: false
language: python
python:
- "2.7"
2015-08-24 13:07:39 +00:00
- "3.4"
2015-08-24 11:53:29 +00:00
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