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:
|
2015-10-27 17:57:53 +00:00
|
|
|
- pip install ecdsa ed25519 # test without trezorlib for now
|
2015-08-24 11:53:29 +00:00
|
|
|
- pip install pylint coverage pep8
|
|
|
|
|
|
|
|
script:
|
|
|
|
- pep8 trezor_agent
|
2016-01-04 17:17:08 +00:00
|
|
|
- pylint --reports=no --rcfile .pylintrc trezor_agent
|
2015-08-24 11:53:29 +00:00
|
|
|
- coverage run --source trezor_agent/ -m py.test -v
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coverage report
|
|
|
|
|