##// END OF EJS Templates
Allow to rebuild docs with Warning this is an old version.
Allow to rebuild docs with Warning this is an old version.

File last commit:

r11540:75cb4890
r21632:cbeff901
Show More
.travis.yml
19 lines | 657 B | text/x-yaml | YamlLexer
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 # http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Jonathan Frederic
Move jinja install up
r11540 - "if [[ $TRAVIS_PYTHON_VERSION == '3.2'* ]]; then pip install -Iv https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.6.tar.gz; fi"
- "if [[ ! $TRAVIS_PYTHON_VERSION == '3.2'* ]]; then pip install jinja2; fi"
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - easy_install -q pyzmq
Jonathan Frederic
Add pandoc to TravisCI config
r11510 - sudo apt-get install pandoc
Jonathan Frederic
Added missing `install` keywords
r11517 - pip install pygments
- pip install sphinx
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 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