From a40d8850701f08c99d66cab2eedf283a0b326731 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Tue, 17 May 2016 17:59:44 +0100 Subject: [PATCH] Add Travis config Travis will need to be switched on for this repo via: https://travis-ci.org/profile Note: Due to #10 the tests currently fail for pip 8.1.2. --- .travis.yml | 12 ++++++++++++ README.rst | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..47fe42d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +sudo: false +language: python +python: + - "2.7" + - "3.4" + - "3.5" + - "pypy" +cache: pip +install: + - pip install -r requirements.txt +script: + - tox diff --git a/README.rst b/README.rst index 1a266af..4254974 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,9 @@ pip-pop ======= +.. image:: https://travis-ci.org/kennethreitz/pip-pop.svg?branch=master + :target: https://travis-ci.org/kennethreitz/pip-pop + Working with lots of ``requirements.txt`` files can be a bit annoying. Have no fear, **pip-pop** is here!