2015-12-21 19:42:33 +00:00
|
|
|
language: python
|
|
|
|
|
|
|
|
# Runs jobs on container based infrastructure
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
# Saves pip downloads/wheels between builds
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
|
2016-01-19 21:55:50 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libudev-dev
|
|
|
|
- libusb-1.0-0-dev
|
|
|
|
|
2015-12-21 19:42:33 +00:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.4"
|
2016-01-19 21:35:02 +00:00
|
|
|
- "3.5"
|
2017-04-25 14:50:56 +00:00
|
|
|
- "3.6"
|
2016-01-19 21:55:50 +00:00
|
|
|
|
2015-12-21 19:42:33 +00:00
|
|
|
install:
|
|
|
|
# Optimisation: build requirements as wheels, which get cached by Travis
|
|
|
|
- pip install "pip>=7.0" wheel
|
2017-05-06 22:46:47 +00:00
|
|
|
- pip install "setuptools>=19.0"
|
2017-06-13 13:43:14 +00:00
|
|
|
- pip install tox-travis
|
2017-06-23 19:31:42 +00:00
|
|
|
- pip install flake8
|
2015-12-21 19:42:33 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- python setup.py install
|
2017-06-23 19:31:42 +00:00
|
|
|
- flake8
|
2017-07-03 15:45:56 +00:00
|
|
|
- flake8 trezorctl
|
2017-06-13 13:43:14 +00:00
|
|
|
- tox
|
2017-06-12 12:38:07 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- http://ci-bot.satoshilabs.com:5000/travis
|
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
on_start: always
|