You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/.travis.yml

43 lines
769 B

9 years ago
language: python
# Runs jobs on container based infrastructure
sudo: false
# Saves pip downloads/wheels between builds
cache:
directories:
- $HOME/.cache/pip
9 years ago
addons:
apt:
packages:
- libudev-dev
- libusb-1.0-0-dev
9 years ago
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
9 years ago
9 years ago
install:
# Optimisation: build requirements as wheels, which get cached by Travis
- pip install "pip>=7.0" wheel
- pip install "setuptools>=19.0"
7 years ago
- pip install tox-travis
- pip install flake8
9 years ago
script:
- python setup.py install
- flake8
- flake8 trezorctl
7 years ago
- tox
notifications:
webhooks:
urls:
- http://ci-bot.satoshilabs.com:5000/travis
on_success: always
on_failure: always
on_start: always