From 0465db6dba366edc813ea5cfa776d4384b72112e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 21 Dec 2015 20:42:33 +0100 Subject: [PATCH] add travis.yml --- .travis.yml | 23 +++++++++++++++++++++++ README.rst | 3 +++ 2 files changed, 26 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b2194ae --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python + +# Runs jobs on container based infrastructure +sudo: false + +# Saves pip downloads/wheels between builds +cache: + directories: + - $HOME/.cache/pip + +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" + +install: + # Optimisation: build requirements as wheels, which get cached by Travis + - pip install "pip>=7.0" wheel + +script: + - python setup.py install diff --git a/README.rst b/README.rst index c8cd010..0ce7263 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,9 @@ python-trezor ============= +.. image:: https://travis-ci.org/trezor/python-trezor.svg?branch=master + :target: https://travis-ci.org/trezor/python-trezor + Client side implementation for Trezor-compatible Bitcoin hardware wallets. See http://bitcointrezor.com for more information.