trezor-agent/.travis.yml

30 lines
488 B
YAML
Raw Permalink Normal View History

2015-08-24 11:53:29 +00:00
sudo: false
language: python
python:
- "2.7"
2016-10-31 20:28:12 +00:00
- "3.4"
- "3.5"
2017-03-17 11:12:42 +00:00
- "3.6"
cache:
directories:
- $HOME/.cache/pip
before_install:
2017-08-18 08:46:08 +00:00
- pip install -U pip wheel
- pip install -U setuptools
2017-12-03 19:45:00 +00:00
- pip install -U pylint coverage pycodestyle pydocstyle
install:
2017-12-03 19:45:00 +00:00
- pip install -U -e .
script:
2017-12-03 19:45:00 +00:00
- pycodestyle libagent
- pylint --reports=no --rcfile .pylintrc libagent
- pydocstyle libagent
- coverage run --source libagent/ -m py.test -v
after_success:
- coverage report