##// END OF EJS Templates
Backport PR #4209: Magic doc fixes...
Backport PR #4209: Magic doc fixes Closes #1986 (adds reference to load_ext in r, octave, and cython magics). In addition, adds installation requirements and other doc fixes for rmagic. This is a candidate for backporting to 1.x.

File last commit:

r11540:75cb4890
r12549:b8b89ca1
Show More
.travis.yml
19 lines | 657 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- "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"
- easy_install -q pyzmq
- sudo apt-get install pandoc
- pip install pygments
- pip install sphinx
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