trezor-agent/.travis.yml

20 lines
392 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"
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
script:
- pep8 trezor_agent
- pylint --reports=no --rcfile .pylintrc trezor_agent
2016-02-19 09:41:05 +00:00
- pydocstyle trezor_agent
- coverage run --source trezor_agent/ -m py.test -v
after_success:
- coverage report