20 lines
415 B
YAML
20 lines
415 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
install:
|
|
- pip install ecdsa ed25519 semver # test without trezorlib for now
|
|
- pip install -U pylint coverage pep8 pydocstyle # use latest tools
|
|
|
|
script:
|
|
- pep8 trezor_agent
|
|
- pylint --reports=no --rcfile .pylintrc trezor_agent
|
|
- pydocstyle trezor_agent
|
|
- coverage run --source trezor_agent/ -m py.test -v
|
|
|
|
after_success:
|
|
- coverage report
|
|
|