From b554378fa17a41a41423bf2e71a8446fabf0789a Mon Sep 17 00:00:00 2001 From: Ruben de Vries Date: Mon, 19 Oct 2015 12:17:20 +0200 Subject: [PATCH] Add TravisCI --- .gitignore | 1 + .travis.yml | 10 ++++++++++ README | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.gitignore b/.gitignore index 97fa5c76..f529afa8 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ local*.cfg .tox/ build/ htmlcov/ +dist/ python_bitcoinlib.egg-info/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..6eaefa69 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +install: + - pip install tox +script: + - tox +env: + - TOXENV=py27 + - TOXENV=py33 + - TOXENV=py34 + - TOXENV=py32 diff --git a/README b/README index 354e7937..3a3bdd28 100644 --- a/README +++ b/README @@ -1,5 +1,6 @@ python-bitcoinlib ----------------- +[![Build Status](https://travis-ci.org/petertodd/python-bitcoinlib.svg?branch=master)](https://travis-ci.org/petertodd/python-bitcoinlib) This Python2/3 library provides an easy interface to the bitcoin data structures and protocol. The approach is low-level and "ground up", with a @@ -7,7 +8,6 @@ focus on providing tools to manipulate the internals of how Bitcoin works. "The Swiss Army Knife of the Bitcoin protocol." - Wladimir J. van der Laan - Requirements ------------