From 8cf55a48d30fab79a7dc78ca41a363edfba0da19 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Tue, 1 May 2012 12:34:37 -0700 Subject: [PATCH] Add .travis.yml --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..92d8dccef --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.5" + - "2.6" + - "2.7" + - "3.2" + - "pypy" +script: + - python setup.py test +notifications: + irc: + channels: "irc.freenode.org#pip" + on_success: change + on_failure: change