From 2496c83fcd0604cccab0205c5ea3175e8e528e51 2012-06-19 15:13:37 From: Marc Abramowitz Date: 2012-06-19 15:13:37 Subject: [PATCH] Add .travis.yml for Travis CI (http://travis-ci.org/) --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f250379 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# http://travis-ci.org/#!/ipython/ipython +language: python +python: + - 2.6 + - 2.7 + - 3.2 +before_install: + - pip install --use-mirrors numpy + - easy_install -q pyzmq +install: + - python setup.py install -q +script: + - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi + - if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi