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"
|
2016-01-09 15:46:07 +00:00
|
|
|
|
|
|
|
install:
|
2016-01-15 11:07:01 +00:00
|
|
|
- pip install ecdsa ed25519 semver # test without trezorlib for now
|
2016-02-19 09:41:05 +00:00
|
|
|
- pip install pylint coverage pep8 pydocstyle
|
2016-01-09 15:46:07 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- pep8 trezor_agent
|
|
|
|
- pylint --reports=no --rcfile .pylintrc trezor_agent
|
2016-02-19 09:41:05 +00:00
|
|
|
- pydocstyle trezor_agent
|
2016-01-09 15:46:07 +00:00
|
|
|
- coverage run --source trezor_agent/ -m py.test -v
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coverage report
|
|
|
|
|