From 8691ee2ddb2474bb03ddddd1982ca5f238981424 Mon Sep 17 00:00:00 2001 From: Michael Rice Date: Sun, 8 Jun 2014 23:29:45 -0500 Subject: [PATCH] added travis file --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..470bb71fe --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "2.6" + - "2.7" + - "pypy" + +before_install: + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi + +install: + - python setup.py bdist_egg + - pip install -e file://$TRAVIS_BUILD_DIR + +script: + nosetests